mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-28 02:15:37 -05:00
fix getMod being undefined because silly me marked it inline
This commit is contained in:
parent
930ee18f62
commit
51f70bc810
2 changed files with 2 additions and 1 deletions
|
@ -1,3 +1,4 @@
|
||||||
|
|
||||||
#include <Geode/loader/Loader.hpp>
|
#include <Geode/loader/Loader.hpp>
|
||||||
#include <Geode/loader/Mod.hpp>
|
#include <Geode/loader/Mod.hpp>
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
namespace geode {
|
namespace geode {
|
||||||
class Mod;
|
class Mod;
|
||||||
inline Mod* getMod();
|
Mod* getMod();
|
||||||
|
|
||||||
enum class ModEventType {
|
enum class ModEventType {
|
||||||
Loaded,
|
Loaded,
|
||||||
|
|
Loading…
Reference in a new issue