8 lines
152 B
C
8 lines
152 B
C
|
#pragma once
|
||
|
class CustomWidgets
|
||
|
{
|
||
|
public:
|
||
|
static bool Checkbox(const char* label, bool* v, const char* hint = nullptr, bool is_disabled = false);
|
||
|
};
|
||
|
|