2014-10-08 13:42:12 +01:00

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);
}