2021-12-23 12:38:14 -06:00
|
|
|
namespace Content.Server.Maps;
|
|
|
|
|
|
|
|
|
|
[ImplicitDataDefinitionForInheritors]
|
2023-08-22 18:14:33 -07:00
|
|
|
public abstract partial class GameMapCondition
|
2021-12-23 12:38:14 -06:00
|
|
|
{
|
|
|
|
|
[DataField("inverted")]
|
2023-08-22 18:14:33 -07:00
|
|
|
public bool Inverted { get; private set; }
|
2021-12-23 12:38:14 -06:00
|
|
|
public abstract bool Check(GameMapPrototype map);
|
|
|
|
|
}
|