diff --git a/Client/Assets/Scripts/Base/Attributes.cs b/Client/Assets/Scripts/Base/Attributes.cs new file mode 100644 index 0000000..32722df --- /dev/null +++ b/Client/Assets/Scripts/Base/Attributes.cs @@ -0,0 +1,13 @@ +using System; + +namespace Base +{ + [AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)] + public class NeedSaveAttribute : Attribute + { + } + [AttributeUsage(AttributeTargets.Field, AllowMultiple = false, Inherited = true)] + public class UnSaveAttribute : Attribute + { + } +} \ No newline at end of file diff --git a/Client/Assets/Scripts/Base/Attributes.cs.meta b/Client/Assets/Scripts/Base/Attributes.cs.meta new file mode 100644 index 0000000..3c3b2a7 --- /dev/null +++ b/Client/Assets/Scripts/Base/Attributes.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: bb4eb0442fc54e27955bb860d6dc2fd3 +timeCreated: 1752635644 \ No newline at end of file diff --git a/Client/Assets/Scripts/Managers/ArchiveManager.cs b/Client/Assets/Scripts/Managers/ArchiveManager.cs new file mode 100644 index 0000000..2b4280b --- /dev/null +++ b/Client/Assets/Scripts/Managers/ArchiveManager.cs @@ -0,0 +1,10 @@ +namespace Managers +{ + public class ArchiveManager + { + public bool Save(string filename) + { + return false; + } + } +} \ No newline at end of file diff --git a/Client/Assets/Scripts/Managers/ArchiveManager.cs.meta b/Client/Assets/Scripts/Managers/ArchiveManager.cs.meta new file mode 100644 index 0000000..cbe3506 --- /dev/null +++ b/Client/Assets/Scripts/Managers/ArchiveManager.cs.meta @@ -0,0 +1,3 @@ +fileFormatVersion: 2 +guid: a6952f5a135a4809bdeb721b4761aa6f +timeCreated: 1752635779 \ No newline at end of file