mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-24 08:27:58 -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/Mod.hpp>
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
namespace geode {
|
||||
class Mod;
|
||||
inline Mod* getMod();
|
||||
Mod* getMod();
|
||||
|
||||
enum class ModEventType {
|
||||
Loaded,
|
||||
|
|
Loading…
Reference in a new issue