diff options
author | Lizzy Fleckenstein <eliasfleckenstein@web.de> | 2023-02-13 14:17:51 +0100 |
---|---|---|
committer | Lizzy Fleckenstein <eliasfleckenstein@web.de> | 2023-02-13 14:17:51 +0100 |
commit | ab2703a3e7cfd81d15463028fd01bd691b9e43f3 (patch) | |
tree | 6350ad6cc2e3186b929353527715a4f07a38cd7f /src/to_clt | |
parent | 8ab53c90bc14adcc38eeb324711b8afdc434eb55 (diff) | |
download | mt_net-ab2703a3e7cfd81d15463028fd01bd691b9e43f3.tar.xz |
Add content constants
Diffstat (limited to 'src/to_clt')
-rw-r--r-- | src/to_clt/env.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/to_clt/env.rs b/src/to_clt/env.rs index 4b035e2..cce7696 100644 --- a/src/to_clt/env.rs +++ b/src/to_clt/env.rs @@ -166,6 +166,10 @@ pub enum MapBlockFlag { pub const ALWAYS_LIT_FROM: u16 = 0xf000; +pub const CONTENT_UNKNOWN: u16 = 125; +pub const CONTENT_AIR: u16 = 126; +pub const CONTENT_IGNORE: u16 = 127; + #[mt_derive(to = "clt")] pub struct MapBlock { pub flags: EnumSet<MapBlockFlag>, |