This repository has been archived on 2023-04-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
dungeon-crawler-demo/scripts/Network/INetworkObject.cs

11 lines
183 B
C#

using Godot;
namespace Network
{
public interface INetworkObject
{
int port { get; }
NetworkedMultiplayerENet peer { get; set; }
void Close();
}
}