summaryrefslogtreecommitdiffstats
path: root/include/godot_cpp/core/RID.cpp
blob: 7444e5596f031ab04945ce560d0f3f1261a9b8eb (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
#include "RID.h"

#include <godot/godot_rid.h>

namespace godot {


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

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

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


}