BoxMode data
This commit is contained in:
parent
e31f5e184f
commit
659c30abcf
1 changed files with 10 additions and 1 deletions
11
src/Mono.cs
11
src/Mono.cs
|
@ -30,7 +30,16 @@ static class Mono
|
||||||
public static XYZi food = new(2, 0, 0);
|
public static XYZi food = new(2, 0, 0);
|
||||||
public static double eat_timestamp = 0.0;
|
public static double eat_timestamp = 0.0;
|
||||||
|
|
||||||
public static DeltaBool held = new(false);
|
public enum BoxMode
|
||||||
|
{
|
||||||
|
Float = -1,
|
||||||
|
Hold = 0,
|
||||||
|
Mount = 1,
|
||||||
|
}
|
||||||
|
// start mounted & in_cone
|
||||||
|
public static BoxMode box_mode = BoxMode.Mount;
|
||||||
|
public static DeltaBool in_cone = new(true);
|
||||||
|
public static DeltaBool in_dist = new(false);
|
||||||
|
|
||||||
public static void Init()
|
public static void Init()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue