The-NodeBox-Generator/src/GUIHelpers.hpp

12 lines
459 B
C++
Raw Permalink Normal View History

2014-04-29 13:48:27 -07:00
#ifndef GUIHELPERS_HPP_INCLUDED
#define GUIHELPERS_HPP_INCLUDED
2014-05-20 15:15:40 -07:00
#include "common.hpp"
2014-04-29 13:48:27 -07:00
extern void fillTB(IGUIElement* sidebar, int parentId, int id, int value);
2014-05-27 09:35:04 -07:00
extern void fillTB(IGUIElement* sidebar, int parentId, int id, float value);
2014-04-29 13:48:27 -07:00
extern void addBox(IGUIElement* parent, IGUIEnvironment* guienv, vector2di pos, int index, const wchar_t* label);
extern void addXYZ(IGUIElement* parent, IGUIEnvironment* guienv, vector2di pos, int startIndex);
#endif