- Mòdul del logo de 'JAILGAMES' fet

This commit is contained in:
2024-07-05 13:51:23 +02:00
parent c48ba26b64
commit 0cee2e3c36
8 changed files with 165 additions and 5 deletions

View File

@@ -77,6 +77,8 @@ namespace draw
/// @param filename nom de l'arxiu GIF d'on carregar la paleta
void loadPalette(const std::string &filename);
void setPaletteColor(const uint8_t index, const uint8_t r, const uint8_t g, const uint8_t b);
/// @brief Esborra la superficie "destination" amb el color especificat
/// @param color color a usar per a borrar la superficie de destinació
void cls(const uint8_t color);
@@ -103,6 +105,8 @@ namespace draw
void fillrect(const int x, const int y, const int w, const int h);
void rect(const int x, const int y, const int w, const int h);
void pset(const int x, const int y, const uint8_t color);
void print(const char* text, const int x, const int y, const uint8_t color, const uint8_t borde);
void print2(const char* text, const int x, const int y, const uint8_t color, const int zoom);
void print2(const int num, const int positions, const int x, const int y, const uint8_t color, const int zoom);