mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2024-11-06 06:45:05 +01:00
15 lines
246 B
C++
15 lines
246 B
C++
#ifndef __ZELDA_SUPPORT_H__
|
|
#define __ZELDA_SUPPORT_H__
|
|
|
|
#include <functional>
|
|
|
|
namespace zelda64 {
|
|
void dispatch_on_main_thread(std::function<void()> func);
|
|
|
|
#ifdef __APPLE__
|
|
const char* get_bundle_resource_directory();
|
|
#endif
|
|
}
|
|
|
|
#endif
|