using UnityEngine; public interface ITouchInputConsumer { void OnTouchPress(Vector2 screenPosition); void OnTouchPosition(Vector2 screenPosition); }