mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-17 00:44:49 +01:00
18 lines
380 B
C#
18 lines
380 B
C#
using System.Collections.Generic;
|
|
|
|
namespace MoleMole.Config
|
|
{
|
|
public class ConfigGroupAIGridEntry : IOnLoaded
|
|
{
|
|
public string Name;
|
|
|
|
public Dictionary<string, List<ConfigLeaderToMinionAction>> LeaderActions = new Dictionary<string, List<ConfigLeaderToMinionAction>>();
|
|
|
|
public ConfigOverrideList Minions = ConfigOverrideList.EMPTY;
|
|
|
|
public void OnLoaded()
|
|
{
|
|
}
|
|
}
|
|
}
|