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