mirror of
https://gitlab.com/hashborgir/plugy.git
synced 2024-11-30 12:36:02 +00:00
34 lines
576 B
C
34 lines
576 B
C
/*=================================================================
|
|
File created by Yohann NICOLAS.
|
|
|
|
Get Game version.
|
|
|
|
=================================================================*/
|
|
#pragma once
|
|
|
|
enum eGameVersion
|
|
{
|
|
UNKNOW = -1,
|
|
V100 = 0,
|
|
V107,
|
|
V108,
|
|
V109,
|
|
V109b,
|
|
V109d,
|
|
V110,
|
|
V111,
|
|
V111b,
|
|
V112,
|
|
V113c,
|
|
V113d,
|
|
V114a,
|
|
V114b,
|
|
V114c,
|
|
V114d
|
|
};
|
|
|
|
const char* GetVersionString(int version);
|
|
eGameVersion GetD2Version(char* gamePath);
|
|
eGameVersion GetD2Version();
|
|
|
|
///////////////////////// END OF FILE ///////////////////////
|