mirror of
https://github.com/borgesdan/xn65
synced 2024-12-29 21:54:47 +01:00
15 lines
274 B
C++
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 |