diff options
author | Karroffel <therzog@mail.de> | 2017-03-06 03:30:46 +0100 |
---|---|---|
committer | Karroffel <therzog@mail.de> | 2017-03-06 03:30:46 +0100 |
commit | 92e1f553ec7b6c609a8503a0d9bbf21f236a9805 (patch) | |
tree | c54344cad1492379b6da23df24f83f8098efa4c1 /include/godot_cpp/core/RID.cpp | |
parent | e3d98fd75788cad33f84498e40e08c235eca506f (diff) | |
download | redot-cpp-92e1f553ec7b6c609a8503a0d9bbf21f236a9805.tar.gz |
properly implemented core types (c++ wise)
Diffstat (limited to 'include/godot_cpp/core/RID.cpp')
-rw-r--r-- | include/godot_cpp/core/RID.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/include/godot_cpp/core/RID.cpp b/include/godot_cpp/core/RID.cpp new file mode 100644 index 0000000..7444e55 --- /dev/null +++ b/include/godot_cpp/core/RID.cpp @@ -0,0 +1,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); +} + + +} |