ExampleRef::get_id() should be const

This commit is contained in:
Andy Maloney
2023-02-02 13:01:31 -05:00
parent f2b97528c1
commit b01f0cf99b
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ using namespace godot;
int ExampleRef::instance_count = 0;
int ExampleRef::last_id = 0;
int ExampleRef::get_id() {
int ExampleRef::get_id() const {
return id;
}