godot-cpp/include/core/RID.hpp

25 lines
217 B
C++
Raw Normal View History

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