1 /*
2 @See License.txt@
3 */
4 package spellcast.game;
5
6 import org.apache.log4j.Logger;
7
8 import org.apache.commons.chain.Command;
9 import org.apache.commons.chain.Context;
10
11 public class ResolveSpells implements Command {
12 /***
13 * Logger for this class
14 */
15 private final Logger logger = Logger.getLogger(ResolveSpells.class);
16
17 public boolean execute(Context arg0) throws Exception {
18 logger.debug("In ResolveSpells");
19 return false;
20 }
21
22 }