11 lines
210 B
Java
11 lines
210 B
Java
package com.iluwatar;
|
|
|
|
public class HealingPotion implements Potion {
|
|
|
|
@Override
|
|
public void drink() {
|
|
System.out.println("You feel healed. (Potion=" + System.identityHashCode(this) + ")");
|
|
}
|
|
|
|
}
|