summaryrefslogtreecommitdiff
path: root/EncryptedData/int_e.cs
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2018-07-21 14:52:12 +0800
committerchai <chaifix@163.com>2018-07-21 14:52:12 +0800
commit3f8305af8a34bec5f1caa69dad9f537657242737 (patch)
tree22190417bf7056703fa57e774df2019e72ffaed9 /EncryptedData/int_e.cs
+EncryptedData Utility
Diffstat (limited to 'EncryptedData/int_e.cs')
-rw-r--r--EncryptedData/int_e.cs38
1 files changed, 38 insertions, 0 deletions
diff --git a/EncryptedData/int_e.cs b/EncryptedData/int_e.cs
new file mode 100644
index 0000000..1622268
--- /dev/null
+++ b/EncryptedData/int_e.cs
@@ -0,0 +1,38 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+namespace Assets.Scripts.Tools.Cheat
+{
+ // encrypted integer
+ class int_e : IEquatable<int_e>, IComparable<int_e>, IEncryptedData
+ {
+ private bool _isInit;
+ private int _data;
+ private int _verifynum;
+ private int _backData;
+ private static int _randomSeed;
+
+ public int GetData()
+ {
+ return _data;
+ }
+
+ public void SetData(int value)
+ {
+
+ }
+
+ public void SetDefaultValue()
+ {
+ SetData(0);
+ }
+
+ private bool VerifyData()
+ {
+
+ }
+
+ }
+}