This commit is contained in:
romkazvo
2023-08-07 19:29:24 +08:00
commit 34d6c5d489
4832 changed files with 1389451 additions and 0 deletions

21
CryGame/FireType.h Normal file
View File

@@ -0,0 +1,21 @@
//////////////////////////////////////////////////////////////////////
//
// Crytek Source code
// Copyright (c) Crytek 2001-2004
//
//////////////////////////////////////////////////////////////////////
#ifndef FIRETYPE_H
#define FIRETYPE_H
enum eFireType
{
ePressing = 0x01,
eHolding = 0x02,
eReleasing = 0x04,
eCancel= 0x08, // cancel current target
eNotFiring = 0x10,
};
#endif