gdnative-bindings 0.7.0

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

pub use gdnative_core::*;

use crate::get_api;
use crate::sys;

use libc;
use std::ops::*;
use std::sync::Once;

include!(concat!(env!("OUT_DIR"), "/bindings_types.rs"));
include!(concat!(env!("OUT_DIR"), "/bindings_traits.rs"));
include!(concat!(env!("OUT_DIR"), "/bindings_methods.rs"));