gdnative_editor/
lib.rs

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