A Rust crate for creating ASCII console-style games.
(NOTE: WIP alpha crate!)
Add RUSTSCII as a dependency in your Cargo.toml
:
toml
[dependencies]
rustscii = "x.y.z" # check latest version
To get started with RUSTSCII, initialize the rendering engine as follows: ```rust extern crate rustscii; use rustscii::run;
fn main() { run(); } ```
For more details, check out the documentation.
Contributions are welcome! If you have any suggestions, bug reports, or feature requests, please open an issue or submit a pull request.
This project is licensed under the MIT License - see the LICENSE file for details.