Skip to content

Commit

Permalink
make editor modules public
Browse files Browse the repository at this point in the history
  • Loading branch information
mrDIMAS committed Jul 22, 2023
1 parent 813de25 commit 65fd493
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions editor/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,32 +10,32 @@
#[macro_use]
extern crate lazy_static;

mod absm;
mod animation;
mod asset;
mod audio;
mod build;
mod camera;
mod command;
mod configurator;
mod curve_editor;
mod gui;
mod inspector;
mod interaction;
mod light;
mod log;
mod material;
mod menu;
mod message;
mod overlay;
mod particle;
pub mod absm;
pub mod animation;
pub mod asset;
pub mod audio;
pub mod build;
pub mod camera;
pub mod command;
pub mod configurator;
pub mod curve_editor;
pub mod gui;
pub mod inspector;
pub mod interaction;
pub mod light;
pub mod log;
pub mod material;
pub mod menu;
pub mod message;
pub mod overlay;
pub mod particle;
pub mod plugin;
mod preview;
mod scene;
mod scene_viewer;
mod settings;
mod utils;
mod world;
pub mod preview;
pub mod scene;
pub mod scene_viewer;
pub mod settings;
pub mod utils;
pub mod world;

use crate::{
absm::AbsmEditor,
Expand Down

0 comments on commit 65fd493

Please sign in to comment.