mirror of
https://github.com/antopilo/Nuake.git
synced 2026-09-09 20:08:57 +03:00
20 lines
396 B
C++
20 lines
396 B
C++
#include "UIDemoWindow.h"
|
|
|
|
#include "Nuake/UI/ImUI.h"
|
|
|
|
float floatSlider = 0.6f;
|
|
bool checkbox = false;
|
|
|
|
void UIDemoWindow::Draw()
|
|
{
|
|
using namespace Nuake;
|
|
|
|
//UI::BeginWindow("UI Demo");
|
|
//{
|
|
// UI::PrimaryButton("Primary Button");
|
|
// UI::SecondaryButton("Secondary Button");
|
|
// UI::FloatSlider("Float slider", floatSlider);
|
|
// UI::CheckBox("Checkbox", checkbox);
|
|
//}
|
|
//UI::EndWindow();
|
|
} |