mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-16 12:59:13 +00:00
15 lines
185 B
Java
15 lines
185 B
Java
package com.iluwatar;
|
|
|
|
/**
|
|
*
|
|
* Party interface.
|
|
*
|
|
*/
|
|
public interface Party {
|
|
|
|
void addMember(PartyMember member);
|
|
|
|
void act(PartyMember actor, Action action);
|
|
|
|
}
|