//
// credits.h
//
// "credits" screen
//
//
// Author: Tomi Belan <tomi.belan@gmail.com>, (C) 2006
//
// Copyright: See COPYING file that comes with this distribution
//
//

#ifndef _helpscreen_h_
#define _helpscreen_h_

#include "programmode.h"

class HelpScreen : public ProgramMode {
public:
  HelpScreen();
  virtual ~HelpScreen();
  
  virtual void event(SDL_Event *);
  virtual void activate();
};

#endif

