mirror of
https://github.com/Relintai/ui_extensions.git
synced 2024-11-08 10:12:14 +01:00
15 lines
260 B
C++
15 lines
260 B
C++
#include "register_types.h"
|
|
|
|
#include "touch_button.h"
|
|
#include "bs_input_event_key.h"
|
|
|
|
void register_ui_extensions_types() {
|
|
ClassDB::register_class<TouchButton>();
|
|
ClassDB::register_class<BSInputEventKey>();
|
|
}
|
|
|
|
void unregister_ui_extensions_types() {
|
|
|
|
}
|
|
|