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