oters_gui 0.1.0

Graphical library definitions for the oters programming language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
extern crate oters_gui;

fn main() {
    let config = oters_gui::WindowConfig {
        title: "UI Test".to_string(),
        dimensions: (720, 480),
        resizable: true,
        fullscreen: false,
        icon: None,
    };
    oters_lang::run!(
        vec!["./oters_gui/examples/ui_test.otrs".to_string()],
        config
    );
}