8 public void Refresh(
Chara owner, GoalListType type)
12 if (type == GoalListType.None)
14 if (owner.IsHomeMember())
16 type = GoalListType.Home;
18 else if (owner.IsGuest())
20 type = GoalListType.Guest;
25 case GoalListType.Home:
26 case GoalListType.Guest:
29 case GoalListType.Enemy:
40 if (this.index >= this.list.Count)
44 return this.list[this.index].Duplicate();
48 public int index = -2;
51 public List<Goal> list =
new List<Goal>();