ModernUO/Projects/Server.Tests/ServerFixture.cs
2020-05-08 20:32:59 -07:00

27 lines
437 B
C#

using System;
using Server.Items;
using Server.Misc;
namespace Server.Tests
{
public class ServerFixture : IDisposable
{
// Global setup
static ServerFixture()
{
// Load Configurations
ServerConfiguration.Load(true);
// Configure / Initialize
MapDefinitions.Configure();
// Load the world
World.Load();
}
public void Dispose()
{
}
}
}