8 lines
154 B
Rust
8 lines
154 B
Rust
use compile_shaders_core::{update_hash, TREES};
|
|
|
|
fn main() -> anyhow::Result<()> {
|
|
for tree in TREES {
|
|
update_hash(tree)?;
|
|
}
|
|
Ok(())
|
|
}
|