mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-07-23 03:02:50 +03:00
16 lines
245 B
C++
16 lines
245 B
C++
#pragma once
|
|
|
|
#include <eepp/ui/uihelper.hpp>
|
|
|
|
using namespace EE;
|
|
using namespace EE::UI;
|
|
|
|
namespace ecode {
|
|
|
|
enum class CustomWidgets : Uint32 {
|
|
UI_TYPE_WELCOME_TAB = UI_TYPE_USER + 1,
|
|
UI_TYPE_TREEVIEWCELLFS = UI_TYPE_WELCOME_TAB + 1,
|
|
};
|
|
|
|
}
|