- Added player array in game
- put server in Game - created start server function in Game - created CommandRestart There are two different 'player classes' which do I use? PlayerBasic and BasePlayer.
This commit is contained in:
parent
15de95ba65
commit
1baa067044
8 changed files with 116 additions and 21 deletions
|
@ -11,6 +11,12 @@ namespace MudEngine.GameObjects.Characters.Controlled
|
|||
{
|
||||
public class PlayerBasic : BaseCharacter
|
||||
{
|
||||
public bool admin {get; private set;}
|
||||
|
||||
public PlayerBasic(bool a = false)
|
||||
{
|
||||
admin = a;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue