rustscii

Crates.iorustscii
lib.rsrustscii
version0.1.2
sourcesrc
created_at2023-09-16 01:30:17.940198
updated_at2023-09-16 10:11:45.930489
descriptionA Rust ASCII game framework.
homepage
repository
max_upload_size
id974090
size13,179
josé (jossse69)

documentation

README

RUSTSCII

A Rust crate for creating ASCII console-style games.

(NOTE: WIP alpha crate!)

Installation

Add RUSTSCII as a dependency in your Cargo.toml:

[dependencies]
rustscii = "x.y.z" # check latest version

Getting Started

To get started with RUSTSCII, initialize the rendering engine as follows:

extern crate rustscii;
use rustscii::run;

fn main() {
    run();
}

For more details, check out the documentation.

Contributing

Contributions are welcome! If you have any suggestions, bug reports, or feature requests, please open an issue or submit a pull request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Credits

Commit count: 0

cargo fmt