ClientNetworkManager
This commit is contained in:
parent
7585fc0c3f
commit
6e89e12021
3 changed files with 30 additions and 0 deletions
5
ZoFo/GameCore/Client.cs
Normal file
5
ZoFo/GameCore/Client.cs
Normal file
|
@ -0,0 +1,5 @@
|
|||
|
||||
class Client
|
||||
{
|
||||
|
||||
}
|
|
@ -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()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
|
||||
interface IUpdateData
|
||||
{
|
||||
|
||||
}
|
Loading…
Add table
Reference in a new issue