mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-05-25 08:41:26 +00:00
18 lines
365 B
C
18 lines
365 B
C
#ifndef EGAME_H
|
|
#define EGAME_H
|
|
|
|
// Global version enum that can be easily shared between loaders
|
|
enum EGame
|
|
{
|
|
ePrimeDemo = 0,
|
|
ePrime = 1,
|
|
eEchoesDemo = 2,
|
|
eEchoes = 3,
|
|
eCorruptionProto = 4,
|
|
eCorruption = 5,
|
|
eReturns = 6,
|
|
eUnknownVersion = -1
|
|
};
|
|
|
|
#endif // EGAME_H
|