Files
wylab-station-14/Content.Shared/Maps/GameMapCondition.cs
Errant 432c9578be move GameMapPrototype and GameMapCondition to shared (#41742)
* move GameMapPrototype and GameMapCondition to shared

* fix
2025-12-06 15:45:50 +00:00

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);
}