(amt int)
| 152 | }) |
| 153 | } |
| 154 | func (p ScriptParty) AddMana(amt int) { |
| 155 | p.each(func(a ScriptActor) { |
| 156 | a.AddMana(amt) |
| 157 | }) |
| 158 | } |
| 159 | func (p ScriptParty) Command(cmd string, waitSeconds ...float64) { |
| 160 | p.each(func(a ScriptActor) { |
| 161 | a.Command(cmd, waitSeconds...) |