alchemyst 0.52.0

Alchemyst PCG tool based on Intuicio scripting platform
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod color;
pub mod image;
pub mod image_pipeline;
pub mod vec2;

use intuicio_core::registry::Registry;

pub fn install(registry: &mut Registry) {
    color::install(registry);
    vec2::install(registry);
    image::install(registry);
    image_pipeline::install(registry);
}