mirror of
https://github.com/MrOkiDoki/BattleBit-Community-Server-API.git
synced 2025-01-26 03:03:08 -03:00
18 lines
402 B
C#
18 lines
402 B
C#
using System;
|
|
|
|
namespace BattleBitAPI.Common
|
|
{
|
|
public class PlayerJoiningArguments
|
|
{
|
|
public PlayerStats Stats;
|
|
public Team Team;
|
|
public Squads Squad;
|
|
|
|
public void Write(BattleBitAPI.Common.Serialization.Stream ser)
|
|
{
|
|
this.Stats.Write(ser);
|
|
ser.Write((byte)this.Team);
|
|
ser.Write((byte)this.Squad);
|
|
}
|
|
}
|
|
}
|