Skip to content

Commit 65fd493

Browse files
committed
make editor modules public
1 parent 813de25 commit 65fd493

1 file changed

Lines changed: 25 additions & 25 deletions

File tree

editor/src/lib.rs

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -10,32 +10,32 @@
1010
#[macro_use]
1111
extern crate lazy_static;
1212

13-
mod absm;
14-
mod animation;
15-
mod asset;
16-
mod audio;
17-
mod build;
18-
mod camera;
19-
mod command;
20-
mod configurator;
21-
mod curve_editor;
22-
mod gui;
23-
mod inspector;
24-
mod interaction;
25-
mod light;
26-
mod log;
27-
mod material;
28-
mod menu;
29-
mod message;
30-
mod overlay;
31-
mod particle;
13+
pub mod absm;
14+
pub mod animation;
15+
pub mod asset;
16+
pub mod audio;
17+
pub mod build;
18+
pub mod camera;
19+
pub mod command;
20+
pub mod configurator;
21+
pub mod curve_editor;
22+
pub mod gui;
23+
pub mod inspector;
24+
pub mod interaction;
25+
pub mod light;
26+
pub mod log;
27+
pub mod material;
28+
pub mod menu;
29+
pub mod message;
30+
pub mod overlay;
31+
pub mod particle;
3232
pub mod plugin;
33-
mod preview;
34-
mod scene;
35-
mod scene_viewer;
36-
mod settings;
37-
mod utils;
38-
mod world;
33+
pub mod preview;
34+
pub mod scene;
35+
pub mod scene_viewer;
36+
pub mod settings;
37+
pub mod utils;
38+
pub mod world;
3939

4040
use crate::{
4141
absm::AbsmEditor,

0 commit comments

Comments
 (0)