gdnative_visual_script/
lib.rs

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