Initial commit; basic 1x1 and 3x3 impl for autotiling
parents
No related branches found
No related tags found
.gitignore
0 → 100644
Cargo.toml
0 → 100644
[package] | ||
name = "micro_autotile" | ||
version = "0.1.0" | ||
edition = "2021" | ||
description = "A rusty implementation of LDTK autotiling" | ||
authors = [ | ||
"Louis Capitanchik <louis@microhacks.co.uk>" | ||
] | ||
[features] | ||
default = ["impl_fastrand"] | ||
impl_fastrand = ["dep:fastrand"] | ||
[dependencies] | ||
fastrand = { version = "1.8.0", optional = true } | ||
\ No newline at end of file |
src/lib.rs
0 → 100644
Please register or sign in to comment