Possible modifications for Issue 26/601.2e

This commit is contained in:
maurer.it 2011-01-14 10:12:31 -05:00
parent e393ac4201
commit fa76561b86
4 changed files with 34 additions and 0 deletions

View file

@ -134,6 +134,12 @@ public class SpellStack extends Stack<StackObject> {
return null;
}
public void reset ( Game game ) {
for ( StackObject stackObject : this ) {
stackObject.reset(game);
}
}
public SpellStack copy() {
return new SpellStack(this);
}