mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-17 23:07:26 +08:00
13 lines
159 B
C++
13 lines
159 B
C++
![]() |
#pragma once
|
||
|
#include "gui_element.hpp"
|
||
|
|
||
|
namespace lua::gui
|
||
|
{
|
||
|
class separator : public gui_element
|
||
|
{
|
||
|
public:
|
||
|
separator(){};
|
||
|
|
||
|
void draw() override;
|
||
|
};
|
||
|
}
|