Simple Rust asset loading derive macro for Enums, and a resource for learning proc-macros!
Please feel free to offer any advice or create a pull request.
The original intent of this library was for compile time loading assets into a binary. This will eventually allow for run-time loading as well, but as for now that will be a future expansion.
```rust use asset_derive::Asset;
enum Icon { #[asset(extension = "png")] Select, Folder, #[asset(filename = "folder-dim")] FolderDim, } ```
List of ideas I have at the moment for this project's expansion. Please create an issue for a new item to add to this list, using
todo
label.