The online racing simulator
List of constants for objects Index types, with number values?
Hello
On http://www.lfs.net/?page=LYT there is list of object types:

...
AXO_18
AXO_19
AXO_CONE_RED
AXO_CONE_RED2
AXO_CONE_RED3
AXO_CONE_BLUE
...

But it is just the names, no numbers are assigned to the constants?
I would like to do things like
if (objectType == AXO_CONE_RED) { ... }

Of course could just make such list myself like
AXO_CONE_RED = 20
etc

but would defeat the point of having such official list of constants in the first place?
I suppose that all those values are defined in a C-style enum like this

enum AXO_Objects {
AXO_NULL
AXO_1
AXO_2
AXO_3
...
}

therefore you don't need to know the actual numerical value. Unless specified otherwise, the first value is 0, second value is 1 and so on...

FGED GREDG RDFGDR GSFDG