| 11 | LoadLocalisation* LoadLocalisation::singleton = nullptr; |
| 12 | |
| 13 | void LoadLocalisation::_bind_methods() { |
| 14 | ClassDB::bind_method(D_METHOD("load_file", "file_path", "locale"), &LoadLocalisation::load_file); |
| 15 | ClassDB::bind_method(D_METHOD("load_locale_dir", "dir_path", "locale"), &LoadLocalisation::load_locale_dir); |
| 16 | ClassDB::bind_method(D_METHOD("load_localisation_dir", "dir_path"), &LoadLocalisation::load_localisation_dir); |
| 17 | } |
| 18 | |
| 19 | LoadLocalisation* LoadLocalisation::get_singleton() { |
| 20 | return singleton; |
nothing calls this directly
no outgoing calls
no test coverage detected