Beginnings of the netcode
This commit is contained in:
11
scripts/Network/INetworkObject.cs
Normal file
11
scripts/Network/INetworkObject.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using Godot;
|
||||
|
||||
namespace Network
|
||||
{
|
||||
public interface INetworkObject
|
||||
{
|
||||
int port { get; }
|
||||
NetworkedMultiplayerENet peer { get; set; }
|
||||
void Close();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user