- GameTime updates; Still not fully functioning correctly. MudGame: - Create command received some error checks when creating Realms.
17 lines
328 B
C#
17 lines
328 B
C#
//Microsoft .NET Framework
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
using MudEngine.GameManagement;
|
|
|
|
namespace MudEngine.GameObjects.Items
|
|
{
|
|
public class BaseItem : BaseObject
|
|
{
|
|
public BaseItem(Game game) : base(game)
|
|
{
|
|
}
|
|
}
|
|
}
|