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