mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 05:27:38 +03:00
27 lines
713 B
C#
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;
|
|
}
|
|
}
|