// 中文注释:SpacetimeDB 绑定生成依赖根模块继续公开 re-export 各领域类型; // 少数领域 helper 同名只影响 value namespace 导出,不影响 table / reducer 类型。 #![allow(ambiguous_glob_reexports)] pub use module_ai::*; pub use module_assets::*; pub use module_runtime::*; pub(crate) use serde_json::{Map as JsonMap, Value as JsonValue, json}; pub use spacetimedb::{ Identity, ProcedureContext, ReducerContext, ScheduleAt, SpacetimeType, Table, Timestamp, }; mod admin_account_storage; mod admin_dashboard; mod ai; mod asset_metadata; mod auth; #[path = "legacy_schema/bark_battle.rs"] mod bark_battle; #[path = "legacy_schema/big_fish.rs"] mod big_fish; #[path = "legacy_schema/custom_world.rs"] mod custom_world; mod editor_agent_storage; mod editor_project_storage; mod external_api_key_storage; mod external_generation; #[path = "legacy_schema/gameplay.rs"] mod gameplay; #[path = "legacy_schema/jump_hop.rs"] mod jump_hop; #[path = "legacy_schema/match3d.rs"] mod match3d; mod migration; #[path = "legacy_schema/puzzle.rs"] mod puzzle; #[path = "legacy_schema/puzzle_clear.rs"] mod puzzle_clear; mod runtime; #[path = "legacy_schema/square_hole.rs"] mod square_hole; #[path = "legacy_schema/visual_novel.rs"] mod visual_novel; #[path = "legacy_schema/wooden_fish.rs"] mod wooden_fish; pub use admin_account_storage::*; pub use admin_dashboard::*; pub use ai::*; pub use asset_metadata::*; pub use auth::*; pub use bark_battle::*; pub use big_fish::*; pub use custom_world::*; pub use editor_agent_storage::*; pub use editor_project_storage::*; pub use external_api_key_storage::*; pub use external_generation::*; pub use gameplay::*; pub use jump_hop::*; pub use match3d::*; pub use migration::*; pub use puzzle_clear::*; pub use runtime::*; pub use square_hole::*; pub use visual_novel::*; pub use wooden_fish::*;