11 lines
306 B
C
11 lines
306 B
C
typedef enum noom_LuaVersion {
|
|
// no 5.0, at least for now, cause it doesn't seem to be used much and is a bit *weird*
|
|
NOOM_VERSION_51,
|
|
NOOM_VERSION_52,
|
|
NOOM_VERSION_53,
|
|
NOOM_VERSION_54
|
|
// no you don't get 5.5; if someone wants to do it and maintain it, they can, i'm not gonna.
|
|
} noom_LuaVersion;
|
|
|
|
|