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 gfile;
14mod save_load;
15mod translate;
16
17pub use gfile::*;
18pub use save_load::*;
19pub use translate::*;