ClientNetworkManager

This commit is contained in:
MARKPRO44 2024-08-15 10:35:02 +03:00
parent 7585fc0c3f
commit 6e89e12021
3 changed files with 30 additions and 0 deletions

5
ZoFo/GameCore/Client.cs Normal file
View file

@ -0,0 +1,5 @@
class Client
{
}

View file

@ -0,0 +1,20 @@
using System.Security.Cryptography.X509Certificates;
using System.Threading;
namespace ZoFo.GameCore.GameManagers.NetworkManager;
public delegate void OnDataSent(string Data);
public class ClientNetworkManager
{
static public event OnDataSent DataSent;
static void OnDataSent(string Data)
{
}
static void StartListening()
{
}
}

View file

@ -0,0 +1,5 @@
interface IUpdateData
{
}