12 lines
246 B
C#
12 lines
246 B
C#
using System.Text.Json;
|
|
using Server.Json;
|
|
|
|
namespace Server.Regions
|
|
{
|
|
public class TownRegion : GuardedRegion
|
|
{
|
|
public TownRegion(DynamicJson json, JsonSerializerOptions options) : base(json, options)
|
|
{
|
|
}
|
|
}
|
|
}
|