summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XUtliPoolLib/BlockInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XUtliPoolLib/BlockInfo.cs')
-rw-r--r--Client/Assets/Scripts/XUtliPoolLib/BlockInfo.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XUtliPoolLib/BlockInfo.cs b/Client/Assets/Scripts/XUtliPoolLib/BlockInfo.cs
new file mode 100644
index 00000000..10f8f38b
--- /dev/null
+++ b/Client/Assets/Scripts/XUtliPoolLib/BlockInfo.cs
@@ -0,0 +1,17 @@
+using System;
+
+namespace XUtliPoolLib
+{
+ public struct BlockInfo
+ {
+ public int size;
+
+ public int count;
+
+ public BlockInfo(int s, int c)
+ {
+ this.size = s;
+ this.count = c;
+ }
+ }
+}