1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#![allow(non_snake_case)] // because of the generated bindings.

pub extern crate gdnative_common;
pub extern crate gdnative_video;
pub use gdnative_common as common;
pub use gdnative_video as video;

use common::*;
use video::*;

use std::sync::{Once, ONCE_INIT};
use std::ops::*;

include!(concat!(env!("OUT_DIR"), "/ui_types.rs"));