dungeonanddeamon/GodoBinding/include/core/Wrapped.hpp
2020-03-25 11:00:23 +01:00

17 lines
207 B
C++

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