22 lines
455 B
C#
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();
|
|
}
|
|
}
|
|
} |