Uses of Interface
IBeastBrain

Uses of IBeastBrain in <Unnamed>
 

Classes in <Unnamed> that implement IBeastBrain
 class DumbBrain
          A dumb beast brain that just keeps on with the same direction and emotion.
 class RandomWalkingBrain
          A beast that takes a random walk around the screen, getting less intense the older it gets and happier the further it is from whatever point it's at the first time getMood is called (which is not necessarily its starting point, but probably is).
 

Methods in <Unnamed> that return IBeastBrain
 IBeastBrain BeastInfo.getBrain()
          Get the beast's brain.
 IBeastBrain Beast.getBrain()
          Fetch the beast's current brain.
 

Methods in <Unnamed> with parameters of type IBeastBrain
 void Beast.setBrain(IBeastBrain brain)
          Set the beast's current brain.
 

Constructors in <Unnamed> with parameters of type IBeastBrain
Beast(IBeastBrain brain, IPackFinder packFinder)
          Construct a new beast with the given brain and packFinder.
Beast(IBeastBrain brain, IPackFinder packFinder, double x, double y, BeastMood mood, double speed)
          Create a new beast with the given data.