Bows & arrows (#19771)

This commit is contained in:
Kara
2023-09-22 02:45:21 -07:00
committed by GitHub
parent 1ba1ab6d61
commit f8d194b117
51 changed files with 507 additions and 22 deletions

View File

@@ -66,6 +66,11 @@ namespace Content.Shared.Storage.Components
[DataField("containerWhitelist")]
public HashSet<string>? ContainerWhitelist;
public readonly List<string> SpriteLayers = new();
/// <summary>
/// The list of map layer keys that are valid targets for changing in <see cref="MapLayers"/>
/// Can be initialized if already existing on the sprite, or inferred automatically
/// </summary>
[DataField("spriteLayers")]
public List<string> SpriteLayers = new();
}
}