This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
YimMenu/src/lua/bindings/gui/separator.cpp

9 lines
100 B
C++
Raw Normal View History

#include "separator.hpp"
namespace lua::gui
{
void separator::draw()
{
ImGui::Separator();
}
}