mirror of
http://47.107.252.169:3000/Roguelite-Game-Developing-Team/Gen_Hack-and-Slash-Roguelite.git
synced 2025-11-19 23:37:13 +08:00
Co-authored-by: m0_75251201 <m0_75251201@noreply.gitcode.com> Reviewed-on: http://47.107.252.169:3000/Roguelite-Game-Developing-Team/Gen_Hack-and-Slash-Roguelite/pulls/60
24 lines
474 B
C#
24 lines
474 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Data
|
|
{
|
|
public enum HediffType
|
|
{
|
|
Buff,
|
|
Debuff
|
|
}
|
|
|
|
public class HediffDef : Define
|
|
{
|
|
// 附加的组件列表
|
|
public List<HediffCompDef> comps = new();
|
|
|
|
public float FPS = 5;
|
|
|
|
// Hediff的发展阶段列表
|
|
public List<HediffStageDef> stages = new();
|
|
public string[] textures;
|
|
public float time = -1;
|
|
public HediffType type;
|
|
}
|
|
} |