#ifndef SUPER_H
#define SUPER_H

#include "beast.h"

class super : public beast {
	public:
		super();

		bool move();
		int squish(int dir);
		bool explode();
	private:
		bool exp;
		int trapped;
};

#endif
