diff options
Diffstat (limited to 'Client/Assets/Scripts/XUtliPoolLib/INativePlugin.cs')
-rw-r--r-- | Client/Assets/Scripts/XUtliPoolLib/INativePlugin.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XUtliPoolLib/INativePlugin.cs b/Client/Assets/Scripts/XUtliPoolLib/INativePlugin.cs new file mode 100644 index 00000000..477e228e --- /dev/null +++ b/Client/Assets/Scripts/XUtliPoolLib/INativePlugin.cs @@ -0,0 +1,17 @@ +using System;
+
+namespace XUtliPoolLib
+{
+ public interface INativePlugin
+ {
+ void InitializeHooks();
+
+ void CloseHooks();
+
+ void Init();
+
+ void Update();
+
+ void InputData(short tableID, short tableType, byte[] buffer, int length);
+ }
+}
|