17 lines
289 B
Java
Raw Normal View History

2014-08-23 13:18:53 +03:00
package com.iluwatar;
/**
*
* Spell strategy.
*
*/
2014-08-23 13:18:53 +03:00
public class SpellStrategy implements DragonSlayingStrategy {
@Override
public void execute() {
System.out
.println("You cast the spell of disintegration and the dragon vaporizes in a pile of dust!");
2014-08-23 13:18:53 +03:00
}
}