1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
extern crate oxygengine_core as core;

pub mod ast;
pub mod resource;
pub mod system;
pub mod vm;

#[cfg(test)]
mod tests;

pub mod prelude {
    pub use crate::{ast::*, resource::*, system::*, vm::*};
}

use crate::system::FlowSystem;
use core::prelude::*;

pub type GUID = ID<()>;

pub fn bundle_installer<'a, 'b>(builder: &mut AppBuilder<'a, 'b>, _: ()) {
    builder.install_system(FlowSystem, "flow", &[]);
}