mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-15 16:58:56 +00:00
12 lines
254 B
Java
12 lines
254 B
Java
package com.iluwatar;
|
|
|
|
public class ProjectileStrategy implements DragonSlayingStrategy {
|
|
|
|
@Override
|
|
public void execute() {
|
|
System.out
|
|
.println("You shoot the dragon with the magical crossbow and it falls dead on the ground!");
|
|
}
|
|
|
|
}
|