| 1234567891011121314151617 |
- using Content.Server.Worldgen.Systems;
- namespace Content.Server.Worldgen.Components;
- /// <summary>
- /// This is used for marking a chunk as loaded.
- /// </summary>
- [RegisterComponent]
- [Access(typeof(WorldControllerSystem))]
- public sealed partial class LoadedChunkComponent : Component
- {
- /// <summary>
- /// The current list of entities loading this chunk.
- /// </summary>
- [ViewVariables] public List<EntityUid>? Loaders = null;
- }
|