#ifndef BLOCK_H
#define BLOCK_H

#include "sprite.h"

using namespace std;

class block : public sprite {
  public:
	// pretty simple stuff
	block();
	int push(int posx, int posy, int dir);
  private:
};

#endif
