Files
godot-cpp/include/core/Wrapped.hpp
2018-07-25 14:06:34 +02:00

17 lines
193 B
C++

#ifndef WRAPPED_HPP
#define WRAPPED_HPP
#include <gdnative/gdnative.h>
namespace godot {
class _Wrapped {
public:
godot_object *_owner;
const void *_type_tag;
};
}
#endif // WRAPPED_HPP