Struct -> Class

This commit is contained in:
Mooshua 2023-08-10 23:16:09 -07:00
parent 65a2eb851c
commit 5a8f63d934
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;