mirror of
https://github.com/ServUO/ServUO
synced 2026-08-11 20:23:04 -04:00
64 lines
No EOL
819 B
C#
64 lines
No EOL
819 B
C#
/*using System;
|
|
using Server;
|
|
using Server.Gumps;
|
|
|
|
namespace CustomsFramework.Systems.ShardControl
|
|
{
|
|
public partial class ShardControlCore : BaseCore
|
|
{
|
|
#region Core Stuff
|
|
public static void Initialize()
|
|
{
|
|
ShardControlCore core = World.GetCore(typeof(ShardControlCore)) as ShardControlCore;
|
|
|
|
if (core == null)
|
|
{
|
|
core = new ShardControlCore();
|
|
core.Prep();
|
|
}
|
|
}
|
|
|
|
public const string SystemVersion = @"1.0";
|
|
|
|
public override string Name
|
|
{
|
|
get
|
|
{
|
|
return @"Shard Control";
|
|
}
|
|
}
|
|
|
|
public override string Description
|
|
{
|
|
get
|
|
{
|
|
return @"System that makes controlling a shard so easy, a child could do it.";
|
|
}
|
|
}
|
|
|
|
public override string Version
|
|
{
|
|
get
|
|
{
|
|
return SystemVersion;
|
|
}
|
|
}
|
|
|
|
public override AccessLevel EditLevel
|
|
{
|
|
get
|
|
{
|
|
return AccessLevel.Owner;
|
|
}
|
|
}
|
|
|
|
public override Gump SettingsGump
|
|
{
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
#endregion
|
|
}
|
|
}*/ |