2025-04-28 11:30:16 +09:00

6 lines
158 B
C#

public interface IPlayerAction {
void StartAction(PlayerController player);
void UpdateAction();
void EndAction();
bool IsActive { get; }
}