Define simple mods enumiration.

This commit is contained in:
Andrey Akhmichin 2019-11-25 01:34:35 +05:00
parent 52b067fd4f
commit 666ff98ac7
1 changed files with 20 additions and 0 deletions

20
dlls/moddef.h Normal file
View File

@ -0,0 +1,20 @@
#pragma once
#ifndef _MODDEF
#define _MODDEF
enum
{
MOD_VALVE, // Half-Life
MOD_AOM, // Afraid of Monsters
MOD_BIGLOLLY, // Big Lolly
MOD_BSHIFT, // Half-Life: Blue Shift
MOD_HALFSECRET, // Half-Secret
MOD_HEVSUIT, // Case Closed, Bloody Pizza: Vendetta, Borderlands
MOD_INDUCTION, // Half-Life: Induction
MOD_KLEINER // Kleiner's Adventures Demo
MOD_REDEMPT, // Redemption/Absolute Redemption
MOD_SEWER_BETA, // Sewer Beta
MOD_TOT // Times of Troubles
};
#endif // _MODDEF