diff options
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/INetEventData.cs')
-rw-r--r-- | Client/Assets/Scripts/XMainClient/INetEventData.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/INetEventData.cs b/Client/Assets/Scripts/XMainClient/INetEventData.cs new file mode 100644 index 00000000..d214b317 --- /dev/null +++ b/Client/Assets/Scripts/XMainClient/INetEventData.cs @@ -0,0 +1,13 @@ +using System;
+
+namespace XMainClient
+{
+ public interface INetEventData
+ {
+ Protocol protocol { get; set; }
+
+ Rpc rpc { get; set; }
+
+ void ManualReturnProtocol();
+ }
+}
|