| 80 | } |
| 81 | |
| 82 | Font* DefaultFont(){ |
| 83 | return mainFont; |
| 84 | } |
| 85 | |
| 86 | int DrawString(const char* str, int x, int y, uint8_t r, uint8_t g, uint8_t b, surface_t* surface, rect_t limits, Font* font) { |
| 87 | if(y >= surface->height || x >= surface->width || y >= limits.y + limits.height || x >= limits.x + limits.width) return 0; |
no outgoing calls
no test coverage detected