first commit

This commit is contained in:
2026-06-04 22:14:21 +03:00
commit 677f9b8090
139 changed files with 15981 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
using System;
using System.Collections.Generic;
[Serializable]
public class TalentSaveData
{
public int availableTalentPoints;
public List<string> learnedTalentIds = new List<string>();
}