18 lines
455 B
C#
18 lines
455 B
C#
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;
|
|
}
|
|
|