diff options
Diffstat (limited to 'Client/Assembly-CSharp/IFocusHolder.cs')
-rw-r--r-- | Client/Assembly-CSharp/IFocusHolder.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Client/Assembly-CSharp/IFocusHolder.cs b/Client/Assembly-CSharp/IFocusHolder.cs new file mode 100644 index 0000000..1342fa8 --- /dev/null +++ b/Client/Assembly-CSharp/IFocusHolder.cs @@ -0,0 +1,11 @@ +using System; +using UnityEngine; + +public interface IFocusHolder +{ + void GiveFocus(); + + void LoseFocus(); + + bool CheckCollision(Vector2 pt); +} |