2024-02-20 14:28:01 +03:00
|
|
|
|
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);
|
2024-03-17 18:25:52 +03:00
|
|
|
|
|
|
|
|
|
|
public record struct HumanoidAppearanceClonedEvent(
|
|
|
|
|
|
Entity<HumanoidAppearanceComponent> Source,
|
|
|
|
|
|
Entity<HumanoidAppearanceComponent> Target);
|