Add a skeleton implementation of TComputedValues in geckolib.

This commit is contained in:
Bobby Holley 2016-03-16 13:02:22 -07:00
parent c2daea2c9c
commit 3c44dbae21
7 changed files with 260 additions and 16 deletions

View file

@ -37,7 +37,13 @@ mod bindings;
mod data;
#[allow(non_snake_case)]
pub mod glue;
mod properties;
mod selector_impl;
mod traversal;
mod wrapper;
// Generated from the properties.mako.rs template by build.rs
#[macro_use]
#[allow(unsafe_code)]
pub mod properties {
include!(concat!(env!("OUT_DIR"), "/properties.rs"));
}