mirror of
https://github.com/guilhermewerner/reflection
synced 2025-06-16 13:34:19 +00:00
Create initial reflection system
This commit is contained in:
18
Source/lib.rs
Normal file
18
Source/lib.rs
Normal 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::*;
|
Reference in New Issue
Block a user