Directional duct unloader

This commit is contained in:
Anuken
2021-11-05 19:45:27 -04:00
parent 52a88e7301
commit 059dc4b3bc
7 changed files with 177 additions and 4 deletions

View File

@@ -20,5 +20,7 @@ public class Env{
//has oxygen in the atmosphere
oxygen = 1 << 7,
//all attributes combined, only used for bitmasking purposes
any = 0xffffffff;
any = 0xffffffff,
//no attributes (0)
none = 0;
}