mirror of
http://47.107.252.169:3000/Roguelite-Game-Developing-Team/Gen_Hack-and-Slash-Roguelite.git
synced 2025-11-20 06:47:14 +08:00
13 lines
346 B
C#
13 lines
346 B
C#
|
|
using System.Collections.Generic;
|
||
|
|
|
||
|
|
namespace Data
|
||
|
|
{
|
||
|
|
public class HediffDef:Define
|
||
|
|
{
|
||
|
|
public float time = -1;
|
||
|
|
// Hediff的发展阶段列表
|
||
|
|
public List<HediffStageDef> stages = new List<HediffStageDef>();
|
||
|
|
// 附加的组件列表
|
||
|
|
public List<HediffCompDef> comps = new List<HediffCompDef>();
|
||
|
|
}
|
||
|
|
}
|