ios-unity/Classes_cocos/WalletEvent.h
2022-07-25 15:17:39 +08:00

24 lines
312 B
C++

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