Created EliminationTargetPoolExtensions

This commit is contained in:
Chomp
2025-01-18 11:50:52 +00:00
parent 566deba507
commit f32e39b1da
2 changed files with 12 additions and 6 deletions
@@ -0,0 +1,12 @@
using Core.Models.Spt.Repeatable;
namespace Core.Utils.Extensions
{
public static class EliminationTargetPoolExtensions
{
public static void Remove<T>(this EliminationTargetPool pool, T key)
{
// TODO: Implement
}
}
}
@@ -33,11 +33,5 @@ namespace Core.Utils.Extensions
return default;
return (T?)cachedProperty.GetValue(obj);
}
public static void Remove<T>(this EliminationTargetPool pool, T key)
{
// TODO: extension method should be moved to a separate static class and deal with logic
}
}
}