Skip to content

Set Player Loadout

SetPlayerLoadout Record

C#
1
2
3
4
5
6
public record SetPlayerLoadout(
    [property: JsonPropertyName("Guns")] List<Gun> Guns,
    [property: JsonPropertyName("Sprays")] List<Spray> Sprays,
    [property: JsonPropertyName("Identity")] Identity Identity,
    [property: JsonPropertyName("Incognito")] bool? Incognito
);