(client) feat:添加数据序列化相关代码 #37

Merged
TheRedApricot merged 3 commits from zzdxxz/Gen_Hack-and-Slash-Roguelite-zzdxxz:temp into main 2025-07-16 13:05:04 +08:00
11 changed files with 2407 additions and 25 deletions
Showing only changes of commit 255642fb36 - Show all commits

View File

@ -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
{
}
}

View File

@ -0,0 +1,3 @@
fileFormatVersion: 2
guid: bb4eb0442fc54e27955bb860d6dc2fd3
timeCreated: 1752635644

View File

@ -0,0 +1,10 @@
namespace Managers
{
public class ArchiveManager
{
public bool Save(string filename)
{
return false;
}
}
}

View File

@ -0,0 +1,3 @@
fileFormatVersion: 2
guid: a6952f5a135a4809bdeb721b4761aa6f
timeCreated: 1752635779