mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 14:26:04 +00:00
11 lines
168 B
Rust
11 lines
168 B
Rust
use azalea_buf::McBuf;
|
|
|
|
#[derive(Clone, Copy, Debug, McBuf)]
|
|
pub enum Direction {
|
|
Down = 0,
|
|
Up = 1,
|
|
North = 2,
|
|
South = 3,
|
|
West = 4,
|
|
East = 5,
|
|
}
|