mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-19 09:26:25 +00:00
11 lines
162 B
Java
11 lines
162 B
Java
package com.iluwatar;
|
|
|
|
public interface PartyMember {
|
|
|
|
void joinedParty(Party party);
|
|
|
|
void partyAction(Action action);
|
|
|
|
void act(Action action);
|
|
}
|