BoxMode data

This commit is contained in:
ethan merchant 2024-11-09 19:50:54 -05:00
parent e31f5e184f
commit 659c30abcf

View file

@ -30,7 +30,16 @@ static class Mono
public static XYZi food = new(2, 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()
{