Files
wwdpublic/Content.Shared/Humanoid/LoadProfileExtensionsEvent.cs
2025-07-20 22:33:40 +10:00

27 lines
713 B
C#

using Content.Shared.Preferences;
using Robust.Shared.Player;
namespace Content.Shared.Humanoid;
public sealed partial class LoadProfileExtensionsEvent : EntityEventArgs
{
public EntityUid Mob { get; }
public ICommonSession Player { get; }
public string? JobId { get; }
public HumanoidCharacterProfile Profile { get; }
public bool GenerateLoadouts { get; }
public LoadProfileExtensionsEvent(EntityUid mob,
ICommonSession player,
string? jobId,
HumanoidCharacterProfile profile,
bool generateLoadouts)
{
Mob = mob;
Player = player;
JobId = jobId;
Profile = profile;
GenerateLoadouts = generateLoadouts;
}
}