MedievalParty/Assets/Scripts/Core/Game/GameManager_RollInitiativeState.cs
Samir Badi 5bbd6b550c tmp
2025-11-27 13:06:26 -05:00

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();
}
}
}