10 lines
161 B
C++
10 lines
161 B
C++
|
|
#include <basalt/export_macro.hpp>
|
||
|
|
|
||
|
|
BS_EXPORT void* BSCreateInstance() {
|
||
|
|
return nullptr;
|
||
|
|
}
|
||
|
|
|
||
|
|
BS_EXPORT void BSDestroyInstance(void* instance) {
|
||
|
|
return;
|
||
|
|
}
|