-Some cleanups in text scrolling code
[supertux.git] / src / object / infoblock.h
1 #ifndef __INFOBLOCK_H__
2 #define __INFOBLOCK_H__
3
4 #include "block.h"
5
6 class InfoBlock : public Block
7 {
8 public:
9   InfoBlock(const lisp::Lisp& lisp);
10   virtual ~InfoBlock();
11   
12 protected:
13   virtual void hit(Player& player);
14   std::string message;
15 };
16
17 #endif
18