2014-08-21 20:06:49 +03:00
|
|
|
package com.iluwatar;
|
|
|
|
|
2014-08-31 11:07:37 +03:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Interface for party members interacting with Party.
|
2014-10-08 13:42:12 +01:00
|
|
|
*
|
2014-08-31 11:07:37 +03:00
|
|
|
*/
|
2014-08-21 20:06:49 +03:00
|
|
|
public interface PartyMember {
|
|
|
|
|
|
|
|
void joinedParty(Party party);
|
2014-10-08 13:42:12 +01:00
|
|
|
|
2014-08-21 20:06:49 +03:00
|
|
|
void partyAction(Action action);
|
|
|
|
|
|
|
|
void act(Action action);
|
|
|
|
}
|