mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
13 lines
184 B
C++
13 lines
184 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <jni.h>
|
|
|
|
namespace RBX
|
|
{
|
|
namespace JNI
|
|
{
|
|
std::string jstringToStdString(JNIEnv *jenv, jstring jstrName);
|
|
} // namespace JNI
|
|
} // namespace RBX
|