Uses of Interface
hermes.postoffice.KeySubscriber

Packages that use KeySubscriber
hermes   
hermes.physics   
hermes.postoffice   
 

Uses of KeySubscriber in hermes
 

Classes in hermes that implement KeySubscriber
 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 KeySubscriber
 void World.subscribe(KeySubscriber sub, char key)
          Registers a subscription to messages sent by a specific keyboard key.
 void World.subscribe(KeySubscriber sub, int key)
          Registers a subscription to messages sent by a specific keyboard key.
 

Uses of KeySubscriber in hermes.physics
 

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

Uses of KeySubscriber in hermes.postoffice
 

Methods in hermes.postoffice with parameters of type KeySubscriber
 boolean PostOffice.removeKeySubscriptions(KeySubscriber sub)
          Removes a key subscription
 boolean PostOffice.removeMouseWheelSubscriptions(KeySubscriber sub)
          Removes a mouse wheel subscription
 boolean PostOffice.removeOSCSubscriptions(KeySubscriber sub)
          Removes an OSC subscription
 void PostOffice.subscribe(KeySubscriber sub, char key)
          Registers a subscription to messages sent by a specific keyboard key.
 void PostOffice.subscribe(KeySubscriber sub, int key)
          Registers a subscription to messages sent by a specific keyboard key.