Skip to content

Commit

Permalink
Small xml docs fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Metious committed Apr 16, 2023
1 parent ff72ca5 commit 38556d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions SMLHelper/Assets/CustomPrefab.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@ public interface ICustomPrefab
/// Gets the gadget instance associated with the specified gadget type attached to this custom prefab.
/// </summary>
/// <param name="gadgetType">The type of the gadget to get.</param>
/// <returns>The gadget instance if found, otherwise; <c>null</c>."/></returns>
/// <returns>The gadget instance if found, otherwise; <c>null</c>.</returns>
Gadget GetGadget(Type gadgetType);

/// <summary>
/// Gets the gadget instance associated with the specified gadget type attached to this custom prefab.
/// </summary>
/// <typeparam name="TGadget">The type of the gadget to get.</typeparam>
/// <returns>The gadget instance if found, otherwise; <c>null</c>."/></returns>
/// <returns>The gadget instance if found, otherwise; <c>null</c>.</returns>
TGadget GetGadget<TGadget>() where TGadget : Gadget;

/// <summary>
Expand Down
2 changes: 0 additions & 2 deletions SMLHelper/Assets/PrefabTemplates/FabricatorTemplate.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
using System;
using System.Collections;
using SMLHelper.Handlers;
using SMLHelper.Utility;
using UnityEngine;
using UWE;
using SMLHelper.Utility;
using Object = UnityEngine.Object;

namespace SMLHelper.Assets.PrefabTemplates;
Expand Down

0 comments on commit 38556d8

Please sign in to comment.