ACR_ServerCommunicator.GameServer.GameServer C# (CSharp) Method

GameServer() public method

Construct a new GameServer object.
public GameServer ( GameWorldManager WorldManager ) : System
WorldManager GameWorldManager Supplies the game world manager. ///
return System
        public GameServer(GameWorldManager WorldManager)
        {
            this.WorldManager = WorldManager;
            this.Characters = new List<GameCharacter>();
            this.ServerIPAddress = IPAddress.None;
            this.DatabaseOnline = true;
            this.Public = false;
        }