Files
Main/Assets/Code/Logic/_Required/Input/Interface/IJoystickHandler.cs
2025-01-25 04:38:09 +08:00

16 lines
333 B
C#

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);
}
}