mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
13 lines
168 B
Rust
13 lines
168 B
Rust
|
use vek::*;
|
||
|
|
||
|
pub struct Plot {
|
||
|
kind: PlotKind,
|
||
|
center_tpos: Vec2<i32>,
|
||
|
units: Vec2<Vec2<i8>>,
|
||
|
}
|
||
|
|
||
|
pub enum PlotKind {
|
||
|
Path,
|
||
|
House { height: i32 },
|
||
|
}
|