godot_core/tools/mod.rs
1/*
2 * Copyright (c) godot-rust; Bromeon and contributors.
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at https://mozilla.org/MPL/2.0/.
6 */
7
8//! Higher-level additions to the Godot engine API.
9//!
10//! Contains functionality that extends existing Godot classes and functions, to make them more versatile
11//! or better integrated with Rust.
12
13mod autoload;
14mod gfile;
15mod save_load;
16mod translate;
17
18pub use autoload::*;
19pub use gfile::*;
20pub use save_load::*;
21pub use translate::*;
22
23// ----------------------------------------------------------------------------------------------------------------------------------------------
24
25pub(crate) fn cleanup() {
26 clear_autoload_cache();
27}