Base of ui system

This commit is contained in:
Thinkofdeath 2015-09-18 22:02:08 +01:00
parent 5681f1d69c
commit 999dde1931
1 changed files with 5 additions and 1 deletions

View File

@ -998,7 +998,11 @@ impl Serializable for MapIcon {
impl Default for MapIcon {
fn default() -> Self {
MapIcon { .. Default::default() }
MapIcon {
direction_type: 0,
x: 0,
z: 0,
}
}
}