mirror of
https://github.com/tiennm99/godot.git
synced 2026-08-05 14:23:40 +00:00
Makes all Godot API's methods Lower Case
This commit is contained in:
+2
-2
@@ -228,12 +228,12 @@ RID Resource::get_rid() const {
|
||||
|
||||
void Resource::register_owner(Object *p_owner) {
|
||||
|
||||
owners.insert(p_owner->get_instance_ID());
|
||||
owners.insert(p_owner->get_instance_id());
|
||||
}
|
||||
|
||||
void Resource::unregister_owner(Object *p_owner) {
|
||||
|
||||
owners.erase(p_owner->get_instance_ID());
|
||||
owners.erase(p_owner->get_instance_id());
|
||||
}
|
||||
|
||||
void Resource::notify_change_to_owners() {
|
||||
|
||||
Reference in New Issue
Block a user