Began initial work on the game world. World, Realm, Zone, Room and Doorway classes created but not implemented.
This commit is contained in:
parent
b708a63273
commit
a3eb1b5fad
18 changed files with 313 additions and 36 deletions
33
MudEngine/WinPC_Engine/Game/Environment/Room.cs
Normal file
33
MudEngine/WinPC_Engine/Game/Environment/Room.cs
Normal file
|
@ -0,0 +1,33 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
using MudEngine.Core.Interfaces;
|
||||
using MudEngine.Core;
|
||||
using MudEngine.Game;
|
||||
using MudEngine.Game.Characters;
|
||||
using MudEngine.GameScripts;
|
||||
namespace MudEngine.Game.Environment
|
||||
{
|
||||
public class Room : BaseScript, IUpdatable
|
||||
{
|
||||
public Room(StandardGame game, String name, String description)
|
||||
: base(game, name, description)
|
||||
{
|
||||
this._Doors = new List<Doorway>();
|
||||
}
|
||||
|
||||
public void Update()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public String[] GetDescription()
|
||||
{
|
||||
return new List<String>().ToArray();
|
||||
}
|
||||
|
||||
private List<Doorway> _Doors;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue