start food below instead?

This commit is contained in:
ethan merchant 2024-11-24 13:20:46 -05:00
parent cf0c656f72
commit 4e41ec5ed1

View file

@ -30,7 +30,7 @@ static class Mono
public static XYZi snake_dir = new(0, 0, 1);
public static DeltaBool in_box = new(true);
public static Dictionary<XYZi, XYZi> holes = new();
public static XYZi food = new(2, 0, 0); // [!] start random to keep new game fresh?
public static XYZi food = new(0, -1, 0); // [!] start random to keep new game fresh?
public static DeltaBool eaten_latch = new(false);
public static double eat_timestamp = 0.0;