2025-08-27 22:39:34 +08:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace Data
|
|
|
|
{
|
|
|
|
public class HediffDef:Define
|
|
|
|
{
|
2025-08-28 15:07:36 +08:00
|
|
|
public float time = -1;
|
2025-08-27 22:39:34 +08:00
|
|
|
// Hediff的发展阶段列表
|
|
|
|
public List<HediffStageDef> stages = new List<HediffStageDef>();
|
|
|
|
// 附加的组件列表
|
|
|
|
public List<HediffCompDef> comps = new List<HediffCompDef>();
|
|
|
|
}
|
|
|
|
}
|