11 lines
244 B
Java
Raw Normal View History

2014-08-23 13:18:53 +03:00
package com.iluwatar;
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!");
}
}