Zelda64Recomp/include/zelda_support.h
2024-06-17 13:42:46 +02:00

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