Crates.io | gd-rs |
lib.rs | gd-rs |
version | 0.1.1 |
source | src |
created_at | 2024-01-01 10:46:13.070619 |
updated_at | 2024-02-11 15:44:14.027087 |
description | Easily access gd save files |
homepage | |
repository | https://github.com/lolikarbuzik/gd-rs |
max_upload_size | |
id | 1085253 |
size | 78,582 |
Install the crate
cargo add gd-rs
Now in your file import gd_rs
use gd_rs::prelude::*;
let cclocallevels = CCLocalLevels::new(); // loads all the levels from the savefile
let my_level = cclocallevels.get(String::from("my level")); // returns option GDLocalLevel
println!("{my_level:?}");
I will start updating this crate soon