File indexing completed on 2025-02-16 03:51:04
0001 #ifndef HTMLPRINTER_H 0002 #define HTMLPRINTER_H 0003 0004 #include "LevelMap.h" 0005 0006 class HtmlPrinter 0007 { 0008 public: 0009 static void printHtml(const Map *lm); 0010 0011 private: 0012 static void wall(bool up, bool down, bool left, bool right); 0013 static void image(const char *name); 0014 static void empty(); 0015 static void printSquare(const Map *lm, int x, int y); 0016 }; 0017 0018 #endif /* HTMLPRINTER_H */