- Implemented Scripting Engine; Not fully completed - Migrated PlayerBasic from MudDesigner to MudEngine.
14 lines
232 B
C#
14 lines
232 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace MudEngine.Scripting
|
|
{
|
|
public class StartupObject
|
|
{
|
|
public StartupObject()
|
|
{
|
|
}
|
|
}
|
|
}
|