13 lines
178 B
C#
13 lines
178 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ReallifeGamemode.Server.Wanted
|
|
{
|
|
public enum JailInLocations
|
|
{
|
|
Outside,
|
|
InCell
|
|
}
|
|
}
|