| 20 | } |
| 21 | |
| 22 | void Renderer::AddString(int x, int y, const std::string& string, D3DCOLOR color, int flags) |
| 23 | { |
| 24 | AddString(string, Vector2(x, y), Color(color), 1.0f, flags); |
| 25 | } |
| 26 | |
| 27 | void Renderer::AddString(const std::string& string, const Vector2& pos, const Color& color, float scale, int flags) |
| 28 | { |
no test coverage detected