A Rust implementation of the olcConsoleGameEngine
rustyConsoleGameEngine is very much a work-in-progress. It most likely will change as I grow as a rust developer.
Add to Project Cargo.toml file:
[dependencies]
rustyConsoleGameEngine = "0.1"
main.rs:
use rustyConsoleGameEngine::olcConsoleGameEngine;
fn main() {
let closure: Box<dyn FnMut(&mut olcConsoleGameEngine)> = Box::new(move |data| {
// Implement game logic
});
let demo = olcConsoleGameEngine::new(closure);
demo.consturct_console(100, 50, 6, 12);
demo.start();
}
Coming Soon
-
Javidx9 - The original writer of the olcConsoleGameEngine
-
Peter Atashian - Owner/Maintainer of Winapi