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,11 @@
using Godot;
namespace Network
{
public interface INetworkObject
{
int port { get; }
NetworkedMultiplayerENet peer { get; set; }
void Close();
}
}