mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-17 00:44:49 +01:00
36 lines
554 B
C#
36 lines
554 B
C#
namespace MoleMole.Config
|
|
{
|
|
public class ConfigGroupAIMinionParamOld
|
|
{
|
|
public enum ParamType
|
|
{
|
|
Float = 0,
|
|
Int = 1,
|
|
Bool = 2,
|
|
AttackType = 3,
|
|
MoveType = 4,
|
|
None = 5
|
|
}
|
|
|
|
public string Name;
|
|
|
|
public ParamType Type = ParamType.None;
|
|
|
|
public float FloatValue;
|
|
|
|
public int IntValue;
|
|
|
|
public bool BoolValue;
|
|
|
|
public ConfigGroupAIMinionOld.AttackType AttackTypeValue;
|
|
|
|
public ConfigGroupAIMinionOld.MoveType MoveTypeValue;
|
|
|
|
public bool Interruption;
|
|
|
|
public bool TriggerAttack;
|
|
|
|
public float TriggerAttackDelay;
|
|
}
|
|
}
|