mirror of
http://47.107.252.169:3000/Roguelite-Game-Developing-Team/Gen_Hack-and-Slash-Roguelite.git
synced 2025-11-20 02:57:12 +08:00
11 lines
276 B
C#
11 lines
276 B
C#
|
|
namespace Data
|
||
|
|
{
|
||
|
|
public class SkillTreeDef:Define
|
||
|
|
{
|
||
|
|
public string tag="Default";
|
||
|
|
public AffiliationDef faction;
|
||
|
|
public SkillTreeDef[] prerequisites;
|
||
|
|
public WeaponDef[] unlockedWeapons;
|
||
|
|
public HediffDef[] unlockedHediffs;
|
||
|
|
}
|
||
|
|
}
|