mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-16 16:59:24 +00:00
11 lines
213 B
Java
11 lines
213 B
Java
package com.iluwatar;
|
|
|
|
public class MeleeStrategy implements DragonSlayingStrategy {
|
|
|
|
@Override
|
|
public void execute() {
|
|
System.out.println("With your Excalibur you severe the dragon's head!");
|
|
}
|
|
|
|
}
|