diff options
author | chai <chaifix@163.com> | 2018-07-21 14:52:12 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2018-07-21 14:52:12 +0800 |
commit | 3f8305af8a34bec5f1caa69dad9f537657242737 (patch) | |
tree | 22190417bf7056703fa57e774df2019e72ffaed9 |
+EncryptedData Utility
-rw-r--r-- | EncryptedData/IEncryptedData.cs | 12 | ||||
-rw-r--r-- | EncryptedData/Vector3_e.cs | 14 | ||||
-rw-r--r-- | EncryptedData/bool_e.cs | 12 | ||||
-rw-r--r-- | EncryptedData/doc/README.md | 0 | ||||
-rw-r--r-- | EncryptedData/float_e.cs | 18 | ||||
-rw-r--r-- | EncryptedData/int_e.cs | 38 | ||||
-rw-r--r-- | EncryptedData/long_e.cs | 19 |
7 files changed, 113 insertions, 0 deletions
diff --git a/EncryptedData/IEncryptedData.cs b/EncryptedData/IEncryptedData.cs new file mode 100644 index 0000000..d7a83a2 --- /dev/null +++ b/EncryptedData/IEncryptedData.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace Assets.Scripts.Tools.Cheat +{ + public interface IEncryptedData + { + void SetDefaultValue(); + } +} diff --git a/EncryptedData/Vector3_e.cs b/EncryptedData/Vector3_e.cs new file mode 100644 index 0000000..29d30c9 --- /dev/null +++ b/EncryptedData/Vector3_e.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace Assets.Scripts.Tools.Cheat +{ + class Vector3_e : IEquatable<int_e>, IComparable<int_e>, IEncryptedData + { + private float_e _datax; + private float_e _datay; + private float_e _dataz; + } +} diff --git a/EncryptedData/bool_e.cs b/EncryptedData/bool_e.cs new file mode 100644 index 0000000..f0b8ac3 --- /dev/null +++ b/EncryptedData/bool_e.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace Assets.Scripts.Tools.Cheat +{ + class bool_e : IEquatable<int_e>, IComparable<int_e>, IEncryptedData + { + private int_e _date; + } +} diff --git a/EncryptedData/doc/README.md b/EncryptedData/doc/README.md new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/EncryptedData/doc/README.md diff --git a/EncryptedData/float_e.cs b/EncryptedData/float_e.cs new file mode 100644 index 0000000..12489d5 --- /dev/null +++ b/EncryptedData/float_e.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace Assets.Scripts.Tools.Cheat +{ + class float_e : IEquatable<int_e>, IComparable<int_e>, IEncryptedData + { + private bool _isInit; + private float _data; + private int _verifynum; + private float _backData; + private static int _randomSeed; + + + } +} 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() + { + + } + + } +} diff --git a/EncryptedData/long_e.cs b/EncryptedData/long_e.cs new file mode 100644 index 0000000..d166124 --- /dev/null +++ b/EncryptedData/long_e.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace Assets.Scripts.Tools.Cheat +{ + class long_e : IEquatable<int_e>, IComparable<int_e>, IEncryptedData + { + private bool _isInit; + private long _data; + private long _verifynum; + private long _backData; + private static long _randomSeed; + + + + } +} |