mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-17 00:44:49 +01:00
33 lines
593 B
C#
33 lines
593 B
C#
using System.Collections.Generic;
|
|
|
|
namespace MoleMole.Config
|
|
{
|
|
public class ConfigGroupAIMinionOld
|
|
{
|
|
public enum MoveType
|
|
{
|
|
Sync = 0,
|
|
Follow = 1,
|
|
Free = 2
|
|
}
|
|
|
|
public enum AttackType
|
|
{
|
|
Trigger = 0,
|
|
Free = 1
|
|
}
|
|
|
|
public string MonsterName;
|
|
|
|
public string AIName;
|
|
|
|
public MoveType DefaultMoveType;
|
|
|
|
public AttackType DefaultAttackType;
|
|
|
|
public ConfigGroupAIMinionParamOld[] AIParams = new ConfigGroupAIMinionParamOld[0];
|
|
|
|
public Dictionary<string, ConfigGroupAIMinionParamOld[]> TriggerAtcions = new Dictionary<string, ConfigGroupAIMinionParamOld[]>();
|
|
}
|
|
}
|