- add: interface for interaction

This commit is contained in:
2024-02-20 14:28:01 +03:00
parent c3135f160e
commit 28c8b45eec
32 changed files with 319 additions and 14 deletions

View File

@@ -0,0 +1,13 @@
using Content.Shared.Humanoid;
using Content.Shared.Preferences;
using Robust.Shared.Serialization;
namespace Content.Shared._Amour.HumanoidAppearanceExtension;
public record struct HumanoidAppearanceLoadingEvent(
Entity<HumanoidAppearanceComponent> Entity,
HumanoidCharacterProfile Profile);
public record struct HumanoidAppearanceLoadedEvent(
Entity<HumanoidAppearanceComponent> Entity,
HumanoidCharacterProfile Profile);