mirror of
https://github.com/Relintai/godot-lportal.git
synced 2025-04-19 21:43:10 +02:00
21 lines
382 B
C++
21 lines
382 B
C++
/* register_types.cpp */
|
|
|
|
#include "register_types.h"
|
|
|
|
#include "core/class_db.h"
|
|
#include "lroom.h"
|
|
#include "lroom_manager.h"
|
|
#include "lportal.h"
|
|
|
|
|
|
void register_lportal_types() {
|
|
|
|
ClassDB::register_class<LRoom>();
|
|
ClassDB::register_class<LRoomManager>();
|
|
ClassDB::register_class<LPortal>();
|
|
}
|
|
|
|
void unregister_lportal_types() {
|
|
//nothing to do here
|
|
}
|