mirror of
https://forge.univ-lyon1.fr/tplifap4/dungeonanddeamon.git
synced 2024-02-27 13:31:50 +01:00
17 lines
207 B
C++
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
|