Uses of Interface
hermes.postoffice.MouseSubscriber

Packages that use MouseSubscriber
hermes   
hermes.physics   
hermes.postoffice   
 

Uses of MouseSubscriber in hermes
 

Classes in hermes that implement MouseSubscriber
 class Being
          General game object class.
 class GenericGroup<A extends HObject,B extends Collection<A>>
          Groups together generic HObjects using the specified collection that share common attributes and interact with another group of HObjects.
 class Group<A extends HObject>
          Groups together Beings that share common attributes and interact with other HObjects.
 class HCamera
          HCamera determines which Beings get drawn.
 class HObject
          Basic game object class.
 

Methods in hermes with parameters of type MouseSubscriber
 void World.subscribe(MouseSubscriber sub, POCodes.Button button)
          Registers a subscription to messages sent by a specific mouse button.
 void World.subscribe(MouseSubscriber sub, POCodes.Button button, HShape region)
          A version of registerMouseSubscription that subscribes only to the requested button events that occur in the given region.
 

Uses of MouseSubscriber in hermes.physics
 

Classes in hermes.physics that implement MouseSubscriber
 class MassedBeing
          An extension of Being representing a body with mass and elasticity.
 

Uses of MouseSubscriber in hermes.postoffice
 

Methods in hermes.postoffice with parameters of type MouseSubscriber
 boolean PostOffice.removeMouseSubscriptions(MouseSubscriber sub)
          Removes a mouse subscription
 void PostOffice.subscribe(MouseSubscriber sub, POCodes.Button button)
          Registers a subscription to messages sent by a specific mouse button.
 void PostOffice.subscribe(MouseSubscriber sub, POCodes.Button button, HShape region)
          A version of registerMouseSubscription that subscribes only to the requested button events that occur in the given region.