- 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.
22 lines
445 B
C#
22 lines
445 B
C#
//Microsoft .NET Framework
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
//MUD Engine
|
|
using MudEngine.GameObjects.Characters;
|
|
|
|
namespace MudEngine.GameObjects.Characters.Controlled
|
|
{
|
|
public class PlayerBasic : BaseCharacter
|
|
{
|
|
public bool admin {get; private set;}
|
|
|
|
public PlayerBasic(bool a = false)
|
|
{
|
|
admin = a;
|
|
}
|
|
|
|
}
|
|
}
|