fix ccmenuitemsprite virtuals

This commit is contained in:
altalk23 2023-10-01 23:58:16 +03:00
parent c4af616a2a
commit 877b644962

View file

@ -2,6 +2,8 @@
#include <dlfcn.h>
#include "ItaniumCast.hpp"
namespace geode {
struct PlatformInfo {
void* m_so;
@ -11,11 +13,3 @@ namespace geode {
namespace geode::base {
/*GEODE_NOINLINE inline*/ uintptr_t get();
}
namespace geode::cast {
template <class After, class Before>
After typeinfo_cast(Before ptr) {
// yall have symbols smh
return dynamic_cast<After>(ptr);
}
}