using Lidgren.Network; using UnityEngine; namespace Landfall.Network; public class Player { public string Name { get; set; } public NetConnection Connection { get; set; } public Vector3 Position { get; set; } }