mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-15 06:58:41 +00:00
12 lines
250 B
Java
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!");
|
|
}
|
|
|
|
}
|