Moved rScript source files into the Mud Engine.Scripting files. Planning on removing the reference to rScript.dll and keep everything within the MudEngine.
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)
|
|
{
|
|
}
|
|
}
|
|
}
|