diff --git a/FutileProject/Assets/Futile/Core/FTouchManager.cs b/FutileProject/Assets/Futile/Core/FTouchManager.cs index d30c8d5..2fb90eb 100644 --- a/FutileProject/Assets/Futile/Core/FTouchManager.cs +++ b/FutileProject/Assets/Futile/Core/FTouchManager.cs @@ -47,7 +47,7 @@ public class FTouchManager private List _multiTouchablesToAdd = new List(); private List _multiTouchablesToRemove = new List(); - private FSingleTouchableInterface _theSingleTouchable = null; + protected FSingleTouchableInterface _theSingleTouchable = null; private bool _isUpdating = false; @@ -81,7 +81,7 @@ public bool DoesTheSingleTouchableExist() return (_theSingleTouchable != null); } - public void Update() + virtual public void Update() { if (!isEnabled) return;