mirror of
https://github.com/Gongxh0901/kunpolibrary
synced 2025-08-05 23:08:42 +00:00
19 lines
289 B
C
19 lines
289 B
C
|
//
|
||
|
// JniTools.hpp
|
||
|
// ZumaGame
|
||
|
//
|
||
|
// Created by GongXH on 2021/3/26.
|
||
|
//
|
||
|
|
||
|
#ifndef JniTools_hpp
|
||
|
#define JniTools_hpp
|
||
|
#include "cocos.h"
|
||
|
class JniTools
|
||
|
{
|
||
|
public:
|
||
|
//调用Java的方法
|
||
|
static std::string getVersionCode();
|
||
|
static int getBuildCode();
|
||
|
};
|
||
|
#endif /* JniTools_hpp */
|