mirror of
https://github.com/MrOkiDoki/BattleBit-Community-Server-API.git
synced 2025-01-30 04:57:19 -03:00
19 lines
402 B
C#
19 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);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|