// // WalletEvent.hpp // Unity-iPhone // // Created by zhl on 2022/7/13. // #ifndef WalletEvent_hpp #define WalletEvent_hpp #include #pragma once #include #include extern "C" { class WalletEvent { public: static void (*Emit)(char* name, char* message); }; // 注册C#的委托 void registWalletEventDelegate(void (*Emit)(char* name, char* message)); } #endif /* WalletEvent_hpp */