Added bare bones TextButton rendering

(Yes, it took that many lines of code)
This commit is contained in:
andreja6
2018-04-19 17:18:26 -07:00
parent acbe509c05
commit 3e4c128347
7 changed files with 151 additions and 10 deletions

View File

@@ -20,6 +20,7 @@ G3D::GFontRef* font;
int textSize;
bool floatBottom;
bool floatRight;
bool floatCenter;
bool visible;
TextButtonInstance::TextButtonInstance(void)
@@ -36,10 +37,12 @@ TextButtonInstance::TextButtonInstance(void)
textSize = 12;
floatBottom = false;
floatRight = false;
floatCenter = false;
visible = true;
className = "TextButtonInstance";
}
TextButtonInstance::~TextButtonInstance(void)
{
}
}