ModernUO/Projects/Server.Tests/ServerFixture.cs
2020-05-03 23:52:16 -07:00

27 lines
440 B
C#

using System;
using Server.Misc;
namespace Server.Tests
{
public class ServerFixture : IDisposable
{
public Mobile mobile { get; }
public ServerFixture()
{
// Load Configurations
ServerConfiguration.Load(true);
// Configure / Initialize
MapDefinitions.Configure();
World.Load();
mobile = new Mobile(0x1);
}
public void Dispose()
{
}
}
}