e3682fd06f
Project CI / AI game creator shell Rust shard 4/4 (push) Successful in 7m31s
Project CI / AI game creator shell Rust shard 1/4 (push) Successful in 7m32s
Project CI / AI game creator shell Rust shard 3/4 (push) Successful in 7m33s
Project CI / AI game creator shell Rust shard 2/4 (push) Successful in 7m40s
Project CI / AI game creator shell Rust smoke (push) Successful in 2m21s
Project CI / AI game creator shell Rust crates (push) Successful in 3m11s
Project CI / Native shell tests (push) Successful in 16m15s
Project CI / Frontend tests (push) Successful in 14m57s
Project CI / Repository checks (push) Successful in 14m48s
Project CI / Backend tests (push) Successful in 20m7s
Project CI / AI game creator shell web tests (push) Successful in 6m20s
移除服务器选择并按来源隔离登录凭据 新增官网客户端下载入口和匿名平台聚合接口 根据发布清单自动展示Windows与macOS首装包 补齐Mac首装元数据和上传顺序校验 同步定向测试与下载发布规范
65 lines
1.5 KiB
Rust
65 lines
1.5 KiB
Rust
pub mod admin;
|
|
pub mod agc_project_snapshots;
|
|
pub mod ai;
|
|
pub mod api;
|
|
#[cfg(feature = "oss-contracts")]
|
|
pub mod assets;
|
|
pub mod auth;
|
|
#[cfg(any())]
|
|
pub mod bark_battle;
|
|
#[cfg(any())]
|
|
pub mod big_fish;
|
|
#[cfg(any())]
|
|
pub mod big_fish_works;
|
|
pub mod client_downloads;
|
|
#[cfg(any())]
|
|
pub mod creation_agent_document_input;
|
|
pub mod creation_audio;
|
|
#[cfg(any())]
|
|
pub mod creation_entry_config;
|
|
#[cfg(any())]
|
|
pub mod creative_agent;
|
|
pub mod editor_agent;
|
|
pub mod editor_generation;
|
|
pub mod error_reports;
|
|
pub use editor_generation::{
|
|
EDITOR_GENERATION_ASSET_BINDING_ID_PREFIX, EDITOR_GENERATION_ASSET_ID_PREFIX,
|
|
EDITOR_GENERATION_ASSET_OBJECT_ID_PREFIX, EDITOR_GENERATION_RESOURCE_ID_PREFIX,
|
|
editor_generation_request_fingerprint, editor_generation_stable_asset_binding_id,
|
|
editor_generation_stable_asset_id, editor_generation_stable_asset_object_id,
|
|
editor_generation_stable_resource_id,
|
|
};
|
|
pub mod external_generation;
|
|
pub mod game_creation_app;
|
|
pub mod hyper3d;
|
|
pub mod llm;
|
|
#[cfg(any())]
|
|
pub mod public_work;
|
|
#[cfg(any())]
|
|
pub mod puzzle_agent;
|
|
#[cfg(any())]
|
|
pub mod puzzle_clear;
|
|
#[cfg(any())]
|
|
pub mod puzzle_creative_template;
|
|
#[cfg(any())]
|
|
pub mod puzzle_gallery;
|
|
#[cfg(any())]
|
|
pub mod puzzle_runtime;
|
|
#[cfg(any())]
|
|
pub mod puzzle_works;
|
|
pub mod runtime;
|
|
#[cfg(any())]
|
|
pub mod runtime_story;
|
|
#[cfg(any())]
|
|
pub mod square_hole_agent;
|
|
#[cfg(any())]
|
|
pub mod square_hole_runtime;
|
|
#[cfg(any())]
|
|
pub mod square_hole_works;
|
|
#[cfg(any())]
|
|
pub mod story;
|
|
#[cfg(any())]
|
|
pub mod visual_novel;
|
|
#[cfg(any())]
|
|
pub mod wooden_fish;
|