From 255642fb36bf39e436041f260cb616044e6b45e1 Mon Sep 17 00:00:00 2001 From: m0_75251201 Date: Wed, 16 Jul 2025 11:25:56 +0800 Subject: [PATCH] =?UTF-8?q?(client)=20feat:=E5=AE=9A=E4=B9=89=E5=AD=98?= =?UTF-8?q?=E6=A1=A3=E6=A0=87=E8=AE=B0=E7=9B=B8=E5=85=B3=E5=B1=9E=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Client/Assets/Scripts/Base/Attributes.cs | 13 +++++++++++++ Client/Assets/Scripts/Base/Attributes.cs.meta | 3 +++ Client/Assets/Scripts/Managers/ArchiveManager.cs | 10 ++++++++++ .../Assets/Scripts/Managers/ArchiveManager.cs.meta | 3 +++ 4 files changed, 29 insertions(+) create mode 100644 Client/Assets/Scripts/Base/Attributes.cs create mode 100644 Client/Assets/Scripts/Base/Attributes.cs.meta create mode 100644 Client/Assets/Scripts/Managers/ArchiveManager.cs create mode 100644 Client/Assets/Scripts/Managers/ArchiveManager.cs.meta 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