mirror of
https://github.com/geode-sdk/geode.git
synced 2024-12-13 17:41:15 -05:00
5af15fba7c
Don't use macros where not necessary! This deprecates the old macro by way of a weird alias namespace.
17 lines
No EOL
379 B
Text
17 lines
No EOL
379 B
Text
// 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>
|
|
|
|
using namespace geode::prelude;
|
|
|
|
#if defined(GEODE_IS_MACOS)
|
|
|
|
#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 |