using System; using System.Collections.Generic; using System.Text; namespace Thousandto.Code.Logic { //摇杆处理器接口 public interface IJoystickHandler { void OnJoystickDrag(int degree); void OnJoystickDragBegin(int degree); void OnJoystickDragEnd(int degree); } }