1
2
3
4
5
6
7
8
extern crate oxygengine_core as core;

pub mod app;
pub mod resource;

pub mod prelude {
    pub use crate::{app::*, resource::*};
}