mirror of
https://github.com/godotengine/godot-cpp.git
synced 2026-01-01 05:48:37 +03:00
17 lines
188 B
C++
17 lines
188 B
C++
#ifndef WRAPPED_HPP
|
|
#define WRAPPED_HPP
|
|
|
|
#include <gdnative/gdnative.h>
|
|
|
|
namespace godot {
|
|
|
|
class _Wrapped {
|
|
public:
|
|
godot_object *_owner;
|
|
size_t _type_tag;
|
|
};
|
|
|
|
}
|
|
|
|
#endif // WRAPPED_HPP
|