mirror of
https://github.com/guilhermewerner/reflection
synced 2025-06-15 13:14:19 +00:00
19 lines
283 B
Rust
19 lines
283 B
Rust
#![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::*;
|