9 lines
100 B
C++
9 lines
100 B
C++
#include "separator.hpp"
|
|
|
|
namespace lua::gui
|
|
{
|
|
void separator::draw()
|
|
{
|
|
ImGui::Separator();
|
|
}
|
|
} |