mirror of
https://github.com/ConjureETS/GameOff2024.git
synced 2026-03-24 13:10:58 +00:00
9 lines
168 B
C#
9 lines
168 B
C#
namespace GameOff.Core
|
|
{
|
|
public interface IState
|
|
{
|
|
public void EnterState();
|
|
public void ExitState();
|
|
public void UpdateState();
|
|
}
|
|
} |