2023-02-09 05:25:23 -05:00
|
|
|
// Only a single objc++ file is used because since pch doesnt work, each file adds a lot to the compile times
|
|
|
|
#include <Geode/DefaultInclude.hpp>
|
|
|
|
|
2023-03-10 14:33:24 -05:00
|
|
|
using namespace geode::prelude;
|
2023-02-09 05:25:23 -05:00
|
|
|
|
|
|
|
#if defined(GEODE_IS_MACOS)
|
|
|
|
|
2023-08-11 10:35:25 -04:00
|
|
|
#include "mac/LoaderImpl.mm"
|
2023-07-08 09:38:09 -04:00
|
|
|
#include "mac/main.mm"
|
2023-02-09 05:25:23 -05:00
|
|
|
#include "mac/crashlog.mm"
|
|
|
|
#include "mac/FileWatcher.mm"
|
|
|
|
#include "mac/util.mm"
|
|
|
|
|
|
|
|
#elif defined(GEODE_IS_IOS)
|
|
|
|
|
|
|
|
#include "ios/FileWatcher.mm"
|
|
|
|
#include "ios/util.mm"
|
|
|
|
|
|
|
|
#endif
|