cubiomes-sys 0.1.3

Raw ff binding for the cubiomes library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Raw ffi bindings to the cubiomes library.
//!
//! This crate also contains module [enums] for building enums for conviniance
#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![allow(improper_ctypes)]
#![allow(clippy::all)]
#![allow(rustdoc::all)]

pub use num_traits;

#[macro_use]
extern crate num_derive;

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

pub mod enums;