Uses of Class
mhframework.MHActor

Packages that use MHActor
mhframework   
mhframework.media   
mhframework.tilemap   
 

Uses of MHActor in mhframework
 

Methods in mhframework that return MHActor
 MHActor MHActorList.get(int index)
          Returns the actor at the given index.
 MHActor MHObjectFactory.getObject(int layer, int tileID)
          Accepts layer and tile identifiers, instantiates a special object indicated by them, and returns a reference to it.
 MHActor[] MHSpawner.getSpawns()
          Returns an array of spawned actors.
 MHActor MHActorList.remove(int index)
          Removes the actor at the given index and returns a reference to it.
 

Methods in mhframework with parameters of type MHActor
 void MHInteractive.activate(MHActor actor)
          To be called when an "activate" command is issued to an object.
 void MHActorList.add(MHActor actor)
          Adds a new actor to the list.
 void MHInteractive.movingTo(MHActor actor)
          To be triggered when an actor begins moving toward an object implementing this interface.
 void MHInteractive.pickUp(MHActor actor)
          To be called when a character picks up an item.
 void MHInteractive.steppedOff(MHActor actor)
          To be triggered when an actor steps off of an object implementing this interface.
 void MHInteractive.steppedOn(MHActor actor)
          To be triggered when an actor steps on an object implementing this interface.
 

Uses of MHActor in mhframework.media
 

Subclasses of MHActor in mhframework.media
 class MHPlayingCard
           
 

Uses of MHActor in mhframework.tilemap
 

Methods in mhframework.tilemap that return MHActor
 MHActor MHMapCell.getLayer(int layer)
           
 

Methods in mhframework.tilemap with parameters of type MHActor
 void MHMapCell.setLayer(int layer, MHActor actor)