summaryrefslogtreecommitdiff
path: root/EncryptedData
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-05-10 18:00:02 +0800
committerchai <chaifix@163.com>2021-05-10 18:00:02 +0800
commitae90ac282a4c16eaf1dc451fb130aa9d6bf14f64 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /EncryptedData
parent35f6e8e5f09d3805679894e1585f8be8892d8edb (diff)
-remove
Diffstat (limited to 'EncryptedData')
-rw-r--r--EncryptedData/IEncryptedData.cs12
-rw-r--r--EncryptedData/Vector3_e.cs14
-rw-r--r--EncryptedData/bool_e.cs12
-rw-r--r--EncryptedData/doc/README.md0
-rw-r--r--EncryptedData/float_e.cs18
-rw-r--r--EncryptedData/int_e.cs38
-rw-r--r--EncryptedData/long_e.cs19
7 files changed, 0 insertions, 113 deletions
diff --git a/EncryptedData/IEncryptedData.cs b/EncryptedData/IEncryptedData.cs
deleted file mode 100644
index d7a83a2..0000000
--- a/EncryptedData/IEncryptedData.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-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
deleted file mode 100644
index 29d30c9..0000000
--- a/EncryptedData/Vector3_e.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-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
deleted file mode 100644
index f0b8ac3..0000000
--- a/EncryptedData/bool_e.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-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
deleted file mode 100644
index e69de29..0000000
--- a/EncryptedData/doc/README.md
+++ /dev/null
diff --git a/EncryptedData/float_e.cs b/EncryptedData/float_e.cs
deleted file mode 100644
index 12489d5..0000000
--- a/EncryptedData/float_e.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-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
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()
- {
-
- }
-
- }
-}
diff --git a/EncryptedData/long_e.cs b/EncryptedData/long_e.cs
deleted file mode 100644
index d166124..0000000
--- a/EncryptedData/long_e.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-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;
-
-
-
- }
-}