mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 17:47:24 +02:00
13 lines
382 B
C#
13 lines
382 B
C#
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.GameStates;
|
|
|
|
namespace Robust.Server.GameObjects;
|
|
|
|
public sealed class AppearanceSystem : SharedAppearanceSystem
|
|
{
|
|
protected override void OnAppearanceGetState(EntityUid uid, AppearanceComponent component, ref ComponentGetState args)
|
|
{
|
|
args.State = new AppearanceComponentState(component.AppearanceData);
|
|
}
|
|
}
|