Files
godot-cpp-double/include/core/Wrapped.hpp

17 lines
188 B
C++
Raw Permalink Normal View History

#ifndef WRAPPED_HPP
#define WRAPPED_HPP
#include <gdnative/gdnative.h>
namespace godot {
class _Wrapped {
public:
godot_object *_owner;
2018-05-13 15:17:49 +02:00
size_t _type_tag;
};
}
#endif // WRAPPED_HPP