summaryrefslogtreecommitdiff
path: root/Landfall.Network/Player.cs
blob: 3f5a66f560ea04630a707e30efef1b99e37dbd1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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; }
}