| 25 | namespace Poseidon |
| 26 | { |
| 27 | void Engine::DrawText(const Point2DAbs& pos, float size, Font* font, PackedColor color, const char* text) |
| 28 | { |
| 29 | DrawText(pos, size, Rect2DClipAbs, font, color, text); |
| 30 | } |
| 31 | |
| 32 | void Engine::DrawText(const Point2DFloat& pos, float size, Font* font, PackedColor color, const char* text) |
| 33 | { |
nothing calls this directly
no test coverage detected