godot-cpp/include/godot_cpp/core/RID.hpp

26 lines
232 B
C++
Raw Normal View History

2017-03-03 02:48:27 +00:00
#ifndef RID_H
#define RID_H
#include <godot/godot_rid.h>
namespace godot {
class Object;
class RID {
godot_rid _godot_rid;
public:
2017-03-06 07:49:24 +00:00
inline RID() {}
RID(Object *p);
int32_t get_rid() const;
~RID();
2017-03-03 02:48:27 +00:00
};
}
#endif // RID_H