geode/entry.cpp

9 lines
189 B
C++
Raw Normal View History

2022-07-30 12:24:03 -04:00
// included by default in every geode project
#include <Geode/Geode.hpp>
GEODE_API bool GEODE_CALL geode_implicit_load(geode::Mod* m) {
geode::Interface::get()->init(m);
return true;
}