ModernUO/Projects/Server.Tests/ServerFixture.cs
2020-04-27 19:27:05 -07:00

24 lines
369 B
C#

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