Touch/mouse support for storyflow.

This commit is contained in:
Xawotihs
2011-09-17 21:27:36 +00:00
parent c96d2fea55
commit c5203a9caf
2 changed files with 6 additions and 2 deletions

View File

@@ -37,6 +37,12 @@ public:
}
;
virtual float getHeight() = 0;
virtual bool getTopLeft(float& top, float& left)
{
top = mY;
left = mX;
return true;
}
};
class StoryText: public StoryDialogElement