gdnative-bindings 0.9.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
16
17
#![allow(unused_variables)]

use libc;
use libc::c_char;
use std::mem;
use std::ptr;
use std::sync::Once;

use gdnative_core::core_types::*;
use gdnative_core::object::*;
use gdnative_core::private::get_api;
use gdnative_core::sys;
use gdnative_core::sys::GodotApi;
use gdnative_core::thread_access;
use gdnative_core::{ref_kind, GodotResult};

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