1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
mod atpath;
mod fixtures;
mod cmdresult;
mod ucommand;
mod scene;
mod common;
mod settings;

pub use atpath::AtPath;
pub use ucommand::UCommand;
pub use scene::Scene;
pub use cmdresult::CmdResult;


#[macro_export]
macro_rules! new_scene {
    () => ({
        use second_law;
        if cfg!(target_os = "windows") {
            second_law::Scene::new(format!("{}.exe", env!("CARGO_PKG_NAME")))
        } else {
            second_law::Scene::new(env!("CARGO_PKG_NAME"))
        }
    });
}