This commit is contained in:
MuHua-123
2025-07-19 17:50:04 +08:00
parent d4574f4bd7
commit 2b349081e2
24 changed files with 1247 additions and 204 deletions
@@ -14,7 +14,13 @@ public class ManagerSimulator : ModuleSingle<ManagerSimulator> {
private void Start() {
character = new DataCharacter();
// 种族
character.race = DataRace.Orc();
// 职业
character.profession = DataProfession.Warrior(character);
// 更新属性
character.Update();
// 打印角色卡
character.PrintCharacterSheet();
}
}