MCPcopy Create free account
hub / github.com/borndotcom/react-native-godot / FuncData

Class FuncData

android/src/main/cpp/GodotModule.cpp:169–176  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

167};
168
169typedef struct FuncData {
170 std::function<void()> func;
171 jobject ref;
172 FuncData() :
173 func(nullptr), ref(nullptr) {}
174 FuncData(std::function<void()> p_func, jobject p_ref) :
175 func(p_func), ref(p_ref) {}
176} FuncData;
177
178typedef struct WindowFuncData {
179 std::function<void(bool)> func;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected