mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-15 06:58:41 +00:00
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) + ")");
|
|
}
|
|
|
|
}
|