mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
* Cleanup: Remove redundant Prototype names * Actually this one probably should stay * Suppress warning * Remove warning suppression on AudioMetadataPrototype * But wait, there's more!
25 lines
697 B
C#
25 lines
697 B
C#
using Robust.Shared.Serialization.Manager.Attributes;
|
|
using Robust.Shared.ViewVariables;
|
|
|
|
namespace Robust.Shared.Prototypes;
|
|
|
|
/// <summary>
|
|
/// Prototype that represents an alias from one tile ID to another. These are used when deserializing entities from yaml.
|
|
/// </summary>
|
|
[Prototype]
|
|
public sealed partial class TileAliasPrototype : IPrototype
|
|
{
|
|
/// <summary>
|
|
/// The target tile ID to alias to.
|
|
/// </summary>
|
|
[DataField]
|
|
public string Target { get; private set; } = default!;
|
|
|
|
/// <summary>
|
|
/// The source tile ID (and the ID of this tile alias).
|
|
/// </summary>
|
|
[ViewVariables]
|
|
[IdDataField]
|
|
public string ID { get; private set; } = default!;
|
|
}
|