10 lines
229 B
C#
10 lines
229 B
C#
|
|
namespace Content.Server.Maps;
|
||
|
|
|
||
|
|
[ImplicitDataDefinitionForInheritors]
|
||
|
|
public abstract class GameMapCondition
|
||
|
|
{
|
||
|
|
[DataField("inverted")]
|
||
|
|
public bool Inverted { get; }
|
||
|
|
public abstract bool Check(GameMapPrototype map);
|
||
|
|
}
|