mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-06 17:58:05 +02:00
11 lines
313 B
C#
11 lines
313 B
C#
using Robust.Shared.GameObjects;
|
|
|
|
namespace Robust.Server.GameObjects;
|
|
|
|
/// <summary>
|
|
/// This is the server instance of <see cref="AppearanceComponent"/>.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
[ComponentReference(typeof(AppearanceComponent))]
|
|
public sealed class ServerAppearanceComponent : AppearanceComponent { }
|