From 6e89e1202106b6044b2f4b05117e16e0a62bde4f Mon Sep 17 00:00:00 2001 From: MARKPRO44 <119742977+MARKPRO4444@users.noreply.github.com> Date: Thu, 15 Aug 2024 10:35:02 +0300 Subject: [PATCH] ClientNetworkManager --- ZoFo/GameCore/Client.cs | 5 +++++ .../NetworkManager/ClientNetworkManager.cs | 20 +++++++++++++++++++ .../NetworkManager/Updates/IUpdateData.cs | 5 +++++ 3 files changed, 30 insertions(+) create mode 100644 ZoFo/GameCore/Client.cs create mode 100644 ZoFo/GameCore/GameManagers/NetworkManager/ClientNetworkManager.cs create mode 100644 ZoFo/GameCore/GameManagers/NetworkManager/Updates/IUpdateData.cs diff --git a/ZoFo/GameCore/Client.cs b/ZoFo/GameCore/Client.cs new file mode 100644 index 0000000..79e04aa --- /dev/null +++ b/ZoFo/GameCore/Client.cs @@ -0,0 +1,5 @@ + +class Client +{ + +} \ No newline at end of file diff --git a/ZoFo/GameCore/GameManagers/NetworkManager/ClientNetworkManager.cs b/ZoFo/GameCore/GameManagers/NetworkManager/ClientNetworkManager.cs new file mode 100644 index 0000000..7949429 --- /dev/null +++ b/ZoFo/GameCore/GameManagers/NetworkManager/ClientNetworkManager.cs @@ -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() + { + + } +} \ No newline at end of file diff --git a/ZoFo/GameCore/GameManagers/NetworkManager/Updates/IUpdateData.cs b/ZoFo/GameCore/GameManagers/NetworkManager/Updates/IUpdateData.cs new file mode 100644 index 0000000..fc9b2d1 --- /dev/null +++ b/ZoFo/GameCore/GameManagers/NetworkManager/Updates/IUpdateData.cs @@ -0,0 +1,5 @@ + +interface IUpdateData +{ + +} \ No newline at end of file