diff --git a/SVSim.BattleEngine/Engine/EventDelegate.cs b/SVSim.BattleEngine/Engine/EventDelegate.cs index a264498b..fd1a123f 100644 --- a/SVSim.BattleEngine/Engine/EventDelegate.cs +++ b/SVSim.BattleEngine/Engine/EventDelegate.cs @@ -538,18 +538,6 @@ public class EventDelegate return false; } - public static EventDelegate Set(List list, Callback callback) - { - if (list != null) - { - EventDelegate eventDelegate = new EventDelegate(callback); - list.Clear(); - list.Add(eventDelegate); - return eventDelegate; - } - return null; - } - public static void Set(List list, EventDelegate del) { if (list != null) diff --git a/SVSim.BattleEngine/Engine/Wizard/DeckSelectUI.cs b/SVSim.BattleEngine/Engine/Wizard/DeckSelectUI.cs index 88554827..4599083d 100644 --- a/SVSim.BattleEngine/Engine/Wizard/DeckSelectUI.cs +++ b/SVSim.BattleEngine/Engine/Wizard/DeckSelectUI.cs @@ -64,6 +64,4 @@ public class DeckSelectUI : MonoBehaviour Obj.SetActive(value: true); } } - - private static readonly Vector3 VIEW_PAGE_POSITION = Vector3.zero; }