Co-authored-by: m0_75251201 <m0_75251201@noreply.gitcode.com> Reviewed-on: Roguelite-Game-Developing-Team/Gen_Hack-and-Slash-Roguelite#55
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>();
|
|
}
|
|
} |