You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
365 B
19 lines
365 B
#ifndef HTMLPRINTER_H
|
|
#define HTMLPRINTER_H
|
|
|
|
#include "LevelMap.h"
|
|
|
|
class HtmlPrinter {
|
|
public:
|
|
static void printHtml (LevelMap *lm);
|
|
|
|
protected:
|
|
static void wall (bool up, bool down, bool left, bool right);
|
|
static void image (const char *name);
|
|
static void empty ();
|
|
static void printSquare (LevelMap *lm, int x, int y);
|
|
};
|
|
|
|
|
|
#endif /* HTMLPRINTER_H */
|