Create initial reflection system

This commit is contained in:
Werner
2021-12-23 08:46:30 -03:00
parent aa549e37ef
commit 19eebb4085
10 changed files with 174 additions and 0 deletions

18
Source/lib.rs Normal file
View File

@ -0,0 +1,18 @@
#![allow(dead_code)]
#![allow(non_snake_case)]
pub use Reflection_Macros::*;
pub mod Examples;
#[path = "Class.rs"]
mod _Class;
pub use self::_Class::*;
#[path = "Object.rs"]
mod _Object;
pub use self::_Object::*;
#[path = "Reflect.rs"]
mod _Reflect;
pub use self::_Reflect::*;