omt 0.9.0-alpha

A set of tiny tools mostly used for game development. A Texture atlas packer, a font converter, a pakfile creator.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub trait CommandPacker {
	fn run(&mut self) -> anyhow::Result<u32> {
		Ok(0)
	}

	fn set_basepath(&mut self, _basepath: &str) {}
	fn set_paklist(&mut self, _paklist: &str) {}
	fn set_output(&mut self, _output: &str) {}
	fn set_input(&mut self, _input: &str) {}
	fn set_name_map(&mut self, _name_map: &str) {}
	fn set_targetpath(&mut self, _targetpath: &str) {}
	fn set_names_only(&mut self, _names_only: bool) {}
}