Text.h 251 B

123456789101112131415
  1. #ifndef INCLUDE_TEXT_H
  2. #define INCLUDE_TEXT_H
  3. #include <string>
  4. namespace WalrusRPG { namespace Graphics { namespace Text {
  5. void print_char(char c, unsigned x, unsigned y);
  6. void print_string(const char *str, unsigned x, unsigned y);
  7. }}}
  8. #endif