12 lines
225 B
Java
12 lines
225 B
Java
package com.iluwatar;
|
|
|
|
public class InvisibilityPotion implements Potion {
|
|
|
|
@Override
|
|
public void drink() {
|
|
System.out.println("You become invisible. (Potion="
|
|
+ System.identityHashCode(this) + ")");
|
|
}
|
|
|
|
}
|