mirror of
http://47.107.252.169:3000/Roguelite-Game-Developing-Team/Gen_Hack-and-Slash-Roguelite.git
synced 2025-11-20 09:57:13 +08:00
(client) feat:健康给予,路径优化,结算界面,商店界面 (#60)
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
This commit is contained in:
@@ -2,12 +2,23 @@ using System.Collections.Generic;
|
||||
|
||||
namespace Data
|
||||
{
|
||||
public class HediffDef:Define
|
||||
public enum HediffType
|
||||
{
|
||||
Buff,
|
||||
Debuff
|
||||
}
|
||||
|
||||
public class HediffDef : Define
|
||||
{
|
||||
public float time = -1;
|
||||
// Hediff的发展阶段列表
|
||||
public List<HediffStageDef> stages = new List<HediffStageDef>();
|
||||
// 附加的组件列表
|
||||
public List<HediffCompDef> comps = new List<HediffCompDef>();
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user