Files
2025-09-18 00:07:48 +08:00

10 lines
204 B
C#

using System.Collections.Generic;
namespace CC
{
[System.Serializable]
public class CC_SaveData
{
public List<CC_CharacterData> SavedCharacters = new List<CC_CharacterData>();
}
}