16 lines
237 B
Java
16 lines
237 B
Java
package com.iluwatar;
|
|
|
|
/**
|
|
*
|
|
* Interface for party members interacting with Party.
|
|
*
|
|
*/
|
|
public interface PartyMember {
|
|
|
|
void joinedParty(Party party);
|
|
|
|
void partyAction(Action action);
|
|
|
|
void act(Action action);
|
|
}
|