RID.hpp 217 B

123456789101112131415161718192021222324
  1. #ifndef RID_H
  2. #define RID_H
  3. #include <godot/rid.h>
  4. namespace godot {
  5. class Object;
  6. class RID {
  7. godot_rid _godot_rid;
  8. public:
  9. inline RID() {}
  10. RID(Object *p);
  11. int32_t get_rid() const;
  12. };
  13. }
  14. #endif // RID_H