mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
13 lines
286 B
C#
13 lines
286 B
C#
using Robust.Shared.GameObjects;
|
|
|
|
namespace Robust.Server.Maps;
|
|
|
|
/// <summary>
|
|
/// Added to Maps that were loaded by MapLoaderSystem. If not present then this map was created externally.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class LoadedMapComponent : Component
|
|
{
|
|
|
|
}
|