gdnative-editor 0.6.1

(DEPRECATED) The Godot game engine's gdnative editor bindings.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![allow(non_snake_case)] // because of the generated bindings.

extern crate gdnative_common;
extern crate gdnative_ui;
extern crate gdnative_animation;

use gdnative_common::*;
use gdnative_ui::*;
use gdnative_animation::*;

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

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