16 lines
237 B
Java
Raw Normal View History

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-08-31 11:07:37 +03:00
*/
2014-08-21 20:06:49 +03:00
public interface PartyMember {
void joinedParty(Party party);
2014-08-21 20:06:49 +03:00
void partyAction(Action action);
void act(Action action);
}