2016-10-14 22:06:09 +00:00
|
|
|
|
|
|
|
#ifndef TINY_VR_GUI_H
|
|
|
|
#define TINY_VR_GUI_H
|
|
|
|
|
|
|
|
#include "Bullet3Common/b3Transform.h"
|
|
|
|
|
|
|
|
class TinyVRGui
|
|
|
|
{
|
|
|
|
struct TinyVRGuiInternalData* m_data;
|
|
|
|
|
|
|
|
public:
|
2018-09-23 21:17:31 +00:00
|
|
|
TinyVRGui(struct ComboBoxParams& params, struct CommonRenderInterface* renderer);
|
2016-10-14 22:06:09 +00:00
|
|
|
virtual ~TinyVRGui();
|
2018-09-23 21:17:31 +00:00
|
|
|
|
2016-10-14 22:06:09 +00:00
|
|
|
bool init();
|
|
|
|
void tick(b3Scalar deltaTime, const b3Transform& guiWorldTransform);
|
|
|
|
|
|
|
|
void clearTextArea();
|
2018-09-23 21:17:31 +00:00
|
|
|
void grapicalPrintf(const char* str, int rasterposx, int rasterposy, unsigned char red, unsigned char green, unsigned char blue, unsigned char alpha);
|
2016-10-14 22:06:09 +00:00
|
|
|
};
|
|
|
|
|
2018-09-23 21:17:31 +00:00
|
|
|
#endif //TINY_VR_GUI_H
|