From c9d0c6ec71e58aefcc494046654bd853f1c181f8 Mon Sep 17 00:00:00 2001 From: devZoGok Date: Sat, 2 Apr 2022 15:21:39 +0300 Subject: [PATCH] removed unused field --- text.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/text.h b/text.h index 9dd559a..0177af9 100755 --- a/text.h +++ b/text.h @@ -27,8 +27,6 @@ namespace vb01{ ~Text(); void update(); void setText(std::wstring); - inline Node* getNode(){return node;} - inline void setNode(Node *node){this->node = node;} inline void setScale(float s){this->scale = s;} inline int getLength(){return entry.length();} inline std::wstring getText(){return entry;} @@ -45,7 +43,6 @@ namespace vb01{ void prepareGlyphs(Glyph, Vector2); void renderGlyphs(Glyph, float[], u32); - Node *node = nullptr; Material *material = nullptr; std::wstring entry; std::vector characters;