diff options
Diffstat (limited to 'Landfall.Network/Player.cs')
-rw-r--r-- | Landfall.Network/Player.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Landfall.Network/Player.cs b/Landfall.Network/Player.cs new file mode 100644 index 0000000..3f5a66f --- /dev/null +++ b/Landfall.Network/Player.cs @@ -0,0 +1,13 @@ +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; } +} |