MedievalParty/Assets/Scripts/Entity/Player/PlayerObject_RollDiceState.cs
Samir Badi 5bbd6b550c tmp
2025-11-27 13:06:26 -05:00

22 lines
455 B
C#

using MedievalParty.Core;
namespace MedievalParty.Entity.Player
{
public class PlayerObject_RollDiceState: IState
{
public void OnEnter()
{
throw new System.NotImplementedException();
}
public void OnExit()
{
throw new System.NotImplementedException();
}
public void OnUpdate()
{
throw new System.NotImplementedException();
}
}
}