21 lines
438 B
C#
21 lines
438 B
C#
namespace MedievalParty.Core.Game
|
|
{
|
|
public class GameManager_RollInitiativeState: IState
|
|
{
|
|
|
|
public void OnEnter()
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
|
|
public void OnExit()
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
|
|
public void OnUpdate()
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
}
|
|
} |