gdnative_ui/
lib.rs

1#![allow(non_snake_case)] // because of the generated bindings.
2
3pub extern crate gdnative_common;
4pub extern crate gdnative_video;
5pub use gdnative_common as common;
6pub use gdnative_video as video;
7
8use common::*;
9use video::*;
10
11use std::sync::{Once, ONCE_INIT};
12use std::ops::*;
13
14include!(concat!(env!("OUT_DIR"), "/ui_types.rs"));