mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-06 17:58:05 +02:00
12 lines
320 B
C#
12 lines
320 B
C#
namespace Robust.Server.Maps
|
|
{
|
|
public sealed class MapLoadOptions
|
|
{
|
|
/// <summary>
|
|
/// If true, UID components will be created for loaded entities
|
|
/// to maintain consistency upon subsequent savings.
|
|
/// </summary>
|
|
public bool StoreMapUids { get; set; }
|
|
}
|
|
}
|