godot_core/registry/
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// Note: final re-exports from godot-core are in lib.rs, mod register::private.
9// These are public here for simplicity, but many are not imported by the main crate.
10
11pub mod callbacks;
12pub mod class;
13pub mod constant;
14pub mod method;
15pub mod plugin;
16pub mod property;
17pub mod signal;
18
19// RpcConfig uses MultiplayerPeer::TransferMode and MultiplayerApi::RpcMode, which are only enabled in `codegen-full` feature.
20#[cfg(feature = "codegen-full")] #[cfg_attr(published_docs, doc(cfg(feature = "codegen-full")))]
21mod rpc_config;
22#[cfg(feature = "codegen-full")] #[cfg_attr(published_docs, doc(cfg(feature = "codegen-full")))]
23pub use rpc_config::RpcConfig;
24
25#[doc(hidden)]
26pub mod godot_register_wrappers;