2015-01-13 08:20:27 +02:00

17 lines
289 B
Java

package com.iluwatar;
/**
*
* Spell strategy.
*
*/
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!");
}
}