veloren/world/src/site2/plot.rs

13 lines
168 B
Rust
Raw Normal View History

2020-12-26 15:53:06 +00:00
use vek::*;
pub struct Plot {
kind: PlotKind,
center_tpos: Vec2<i32>,
units: Vec2<Vec2<i8>>,
}
pub enum PlotKind {
Path,
House { height: i32 },
}