forked from wylab/wylab-station-14
432c9578be
* move GameMapPrototype and GameMapCondition to shared * fix
10 lines
250 B
C#
10 lines
250 B
C#
namespace Content.Shared.Maps;
|
|
|
|
[ImplicitDataDefinitionForInheritors]
|
|
public abstract partial class GameMapCondition
|
|
{
|
|
[DataField("inverted")]
|
|
public bool Inverted { get; private set; }
|
|
public abstract bool Check(GameMapPrototype map);
|
|
}
|