mirror of
https://github.com/blanking003/cx-cocos.git
synced 2025-04-23 15:29:00 +00:00
17 lines
286 B
C++
17 lines
286 B
C++
|
|
#pragma once
|
|
|
|
#include "cxDefine.h"
|
|
|
|
class SystemIntf : public NativeIntfClass
|
|
{
|
|
public:
|
|
static SystemIntf* ins();
|
|
virtual std::string call(std::string fname, cc::ValueVector params, const DataCallback& callback) override;
|
|
|
|
private:
|
|
|
|
DataCallback dataCallback;
|
|
};
|
|
|