MudEngine:

- GameTime updates; Still not fully functioning correctly.

MudGame:
 - Create command received some error checks when creating Realms.
This commit is contained in:
Scionwest_cp 2010-08-17 19:57:33 -07:00
parent 7ad027e9d7
commit f3b4c40010
5 changed files with 86 additions and 24 deletions

View file

@ -4,11 +4,13 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using MudEngine.GameManagement;
namespace MudEngine.GameObjects.Items
{
public class BaseItem : BaseObject
{
public BaseItem(GameManagement.Game game) : base(game)
public BaseItem(Game game) : base(game)
{
}
}