Beginnings of the netcode

This commit is contained in:
2020-10-28 10:25:11 -04:00
parent 7e361f6758
commit 5559c3b31e
10 changed files with 249 additions and 2 deletions

View File

@ -0,0 +1,8 @@
namespace Network.Data
{
public struct PlayerData
{
public int peer_id;
public string name;
}
}