11 lines
183 B
C#
11 lines
183 B
C#
using Godot;
|
|
|
|
namespace Network
|
|
{
|
|
public interface INetworkObject
|
|
{
|
|
int port { get; }
|
|
NetworkedMultiplayerENet peer { get; set; }
|
|
void Close();
|
|
}
|
|
} |