| Crates.io | feo-oop-engine-proc-macros |
| lib.rs | feo-oop-engine-proc-macros |
| version | 0.0.5 |
| created_at | 2022-02-04 22:34:51.281441+00 |
| updated_at | 2022-02-09 03:46:55.134042+00 |
| description | The proc macros for feo-oop-engine. |
| homepage | |
| repository | https://github.com/littleTitan/feo-oop-engine/tree/main/feo-oop-engine-proc-macros |
| max_upload_size | |
| id | 527140 |
| size | 42,638 |
see: feo-oop-engine
Proc Macro Crate for feo-oop-engine
This crate allows for the use of derive macros to facilitate the development with and extension of feo-oop-engine's crate features.
Using a derive macro is simple enough. Simply import the crate and use the macro.
#[macro_use] extern crate feo_oop_engine_proc_macros;
#[derive(Global)]
struct Globals {
..
}