2025-05-15 14:33:59 +09:00

6 lines
158 B
C#

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