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/IEncryptedData.cs |
+EncryptedData Utility
Diffstat (limited to 'EncryptedData/IEncryptedData.cs')
-rw-r--r-- | EncryptedData/IEncryptedData.cs | 12 |
1 files changed, 12 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(); + } +} |