1
0
mirror of https://github.com/borgesdan/xn65 synced 2024-12-29 21:54:47 +01:00
xn65/framework/graphics/spritefont.hpp
2024-04-14 21:23:09 -03:00

15 lines
274 B
C++

#ifndef XNA_GRAPHICS_SPRITEFONT_HPP
#define XNA_GRAPHICS_SPRITEFONT_HPP
#include "../default.hpp"
namespace xna {
class ISpriteFont {
public:
virtual ~ISpriteFont(){}
virtual Vector2 MeasureString(String const& text, bool ignoreWhiteSpace = true) = 0;
};
}
#endif