]> git.localhorst.tv Git - l2e.git/blobdiff - src/graphics/Font.h
added frames for status menu
[l2e.git] / src / graphics / Font.h
index 8b365252c79fdb966ef1b287850557808d0aad26..07cd35f0a5f32867e33487fbb082b578d589478d 100644 (file)
@@ -17,6 +17,9 @@ namespace graphics {
 
 class Font {
 
+public:
+       static const int TYPE_ID = 404;
+
 public:
        explicit Font(const Sprite *sprite = 0, int colOffset = 0, int rowOffset = 0)
        : sprite(sprite), colOffset(colOffset), rowOffset(rowOffset) {
@@ -37,6 +40,7 @@ public:
        void SetRowOffset(int n) { rowOffset = n; }
 
        static void CreateTypeDescription();
+       static void Construct(void *);
 
 private:
        const Sprite *sprite;