- Now compiles scripts contained under a MUDCompiler/bin/debug/Scripts folder. MudEngine: - ScriptEngine now wraps scripts inside a default namespace. MUDScripts MUST not be placed within a namespace inside the script. The Engine handles it automatically.
18 lines
356 B
C#
18 lines
356 B
C#
//Microsoft .NET Framework
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
//MUD Engine
|
|
using MudEngine.GameObjects.Characters;
|
|
|
|
namespace MudEngine.GameObjects.Characters.Controlled
|
|
{
|
|
public class PlayerBasic : BaseCharacter
|
|
{
|
|
public PlayerBasic()
|
|
{
|
|
}
|
|
}
|
|
}
|