Files
OldThink/Content.Server/Maps/GameMapCondition.cs

10 lines
229 B
C#
Raw Normal View History

namespace Content.Server.Maps;
[ImplicitDataDefinitionForInheritors]
public abstract class GameMapCondition
{
[DataField("inverted")]
public bool Inverted { get; }
public abstract bool Check(GameMapPrototype map);
}