Files
java-design-patterns/strategy/src/main/java/com/iluwatar/SpellStrategy.java
2014-10-08 13:42:12 +01:00

12 lines
250 B
Java

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!");
}
}