* @param bbox bounding box
* @param sprSheet the sprite sheet containing the graphics for this object
*/
public Towelie(int x, int y, Box bbox, SpriteSheet sprSheet) {
super(x, y, bbox);
currentAnim = new GfxState(sprSheet, 0);
randG = new Random();
}