mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-14 14:58:39 +00:00
11 lines
164 B
Java
11 lines
164 B
Java
package com.iluwatar;
|
|
|
|
public class StrengthPotion implements Potion {
|
|
|
|
@Override
|
|
public void drink() {
|
|
System.out.println("You feel strong.");
|
|
}
|
|
|
|
}
|