This commit is contained in:
Mooshua 2023-08-10 23:17:43 -07:00 committed by GitHub
commit 14ce61bf3e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
namespace BattleBitAPI.Common
{
public struct OnPlayerKillArguments<TPlayer> where TPlayer : Player
public class OnPlayerKillArguments<TPlayer> where TPlayer : Player
{
public TPlayer Killer;
public Vector3 KillerPosition;

View File

@ -1,6 +1,6 @@
namespace BattleBitAPI.Common
{
public struct PlayerLoadout
public class PlayerLoadout
{
public WeaponItem PrimaryWeapon;
public WeaponItem SecondaryWeapon;

View File

@ -2,7 +2,7 @@
namespace BattleBitAPI.Common
{
public struct PlayerSpawnRequest
public class PlayerSpawnRequest
{
public PlayerSpawningPosition RequestedPoint;
public PlayerLoadout Loadout;

View File

@ -1,6 +1,6 @@
namespace BattleBitAPI.Common
{
public struct PlayerWearings
public class PlayerWearings
{
public string Head;
public string Chest;