```cs public enum RayAxis2D { // Cast rays on the X and Z axis only XZ = 0, // Cast rays on the X and Y axis only XY, // Cast rays on the Y and Z axis only YZ, } ```