13 lines
278 B
C#
13 lines
278 B
C#
using UnityEngine;
|
|
|
|
namespace NeonTea.Quakeball.Net {
|
|
public class NetPlayer {
|
|
public ulong Id;
|
|
public GameObject Controlled;
|
|
|
|
public NetPlayer(ulong id, GameObject obj = null) {
|
|
Id = id;
|
|
Controlled = obj;
|
|
}
|
|
}
|
|
} |