Files
Cielonos/Assets/Scripts/MainGame/Base/SaveData/SaveDataBase.cs
SoulliesOfficial 7bc1e1722c 爆更
2026-06-05 04:21:00 -04:00

17 lines
407 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
namespace Cielonos.MainGame
{
/// <summary>
/// 所有配装/数据传输配置包的抽象基类。
/// 包含基本元数据ID、名称、描述便于后续集中管理和扩展。
/// </summary>
[Serializable]
public abstract class SaveDataBase
{
public string saveId;
public string saveName;
public string description;
}
}