2023-07-21 09:50:06 +00:00
|
|
|
/**
|
|
|
|
* register_types.h
|
|
|
|
* =============================================================================
|
|
|
|
* Copyright 2021-2023 Serhii Snitsaruk
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style
|
|
|
|
* license that can be found in the LICENSE file or at
|
|
|
|
* https://opensource.org/licenses/MIT.
|
|
|
|
* =============================================================================
|
|
|
|
*/
|
2022-08-28 10:54:34 +00:00
|
|
|
|
2022-08-28 20:58:30 +00:00
|
|
|
#ifndef LIMBOAI_REGISTER_TYPES_H
|
|
|
|
#define LIMBOAI_REGISTER_TYPES_H
|
|
|
|
|
2022-12-15 07:26:52 +00:00
|
|
|
#include "modules/register_module_types.h"
|
|
|
|
|
|
|
|
void initialize_limboai_module(ModuleInitializationLevel p_level);
|
|
|
|
void uninitialize_limboai_module(ModuleInitializationLevel p_level);
|
2022-08-28 20:58:30 +00:00
|
|
|
|
|
|
|
#endif // LIMBOAI_REGISTER_TYPES_H
|