diff options
Diffstat (limited to 'EncryptedData/int_e.cs')
-rw-r--r-- | EncryptedData/int_e.cs | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/EncryptedData/int_e.cs b/EncryptedData/int_e.cs deleted file mode 100644 index 1622268..0000000 --- a/EncryptedData/int_e.cs +++ /dev/null @@ -1,38 +0,0 @@ -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() - { - - } - - } -} |