summaryrefslogtreecommitdiffstats
path: root/include/godot_cpp/core/RID.h
blob: 26a31ec592d23347d5fafbd8576b297d3b323dcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef RID_H
#define RID_H

#include <godot/godot_rid.h>

namespace godot {

class Object;

class RID {
	godot_rid _godot_rid;
public:

	RID(Object *p)
	{
		godot_rid_new(&_godot_rid, p);
	}

	int32_t get_rid() const
	{
		return godot_rid_get_rid(&_godot_rid);
	}

	~RID()
	{
		godot_rid_destroy(&_godot_rid);
	}
};

}

#endif // RID_H