Hook class methods are now following to lowercase naming convention

This commit is contained in:
2023-10-10 13:05:16 +03:00
parent 18a42c61d3
commit ed1903119a
2 changed files with 12 additions and 12 deletions

8
hook.h
View File

@ -19,10 +19,10 @@ protected:
static void _bind_methods();
public:
Dictionary GetTable();
void Add(String event, String uid, Callable function);
void Call(String event, Array args, bool defer);
void Remove(String event, String uid);
Dictionary getTable();
void add(String event, String uid, Callable function);
void call(String event, Array args, bool defer);
void remove(String event, String uid);
Hook();
};