Crates.io | elma |
lib.rs | elma |
version | 0.1.15 |
source | src |
created_at | 2016-06-22 13:46:41.414385 |
updated_at | 2024-11-04 10:01:35.079385 |
description | Library for reading and writing Elasto Mania files. |
homepage | https://github.com/elmadev/elma-rust |
repository | https://github.com/elmadev/elma-rust |
max_upload_size | |
id | 5456 |
size | 1,666,353 |
Elasto Mania file handler crate for Rust. Very much still a work in progress.
Until a 1.0 release this will only target the latest stable version of Rust.
Add this in your Cargo.toml file:
[dependencies]
elma = "*"
To create a new default level:
extern crate elma;
use elma::lev::*;
fn main () {
let mut level = Level::new();
level.save("example.lev", Top10Save::No).unwrap();
}