mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-06 17:58:05 +02:00
20 lines
609 B
C#
20 lines
609 B
C#
using System.Collections.Generic;
|
|
using Robust.Shared.Analyzers;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Serialization.Manager.Attributes;
|
|
using Robust.Shared.ViewVariables;
|
|
|
|
namespace Robust.Client.GameObjects;
|
|
|
|
/// <summary>
|
|
/// This is the client instance of <see cref="AppearanceComponent"/>.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
[ComponentReference(typeof(AppearanceComponent)), Access(typeof(AppearanceSystem))]
|
|
public sealed class ClientAppearanceComponent : AppearanceComponent
|
|
{
|
|
[ViewVariables]
|
|
[DataField("visuals")]
|
|
internal List<AppearanceVisualizer> Visualizers = new();
|
|
}
|