mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
17 lines
325 B
C
17 lines
325 B
C
//===========================================================================//
|
|
//
|
|
// Purpose:
|
|
//
|
|
//===========================================================================//
|
|
#ifndef INPUTENUMS_H
|
|
#define INPUTENUMS_H
|
|
|
|
struct InputEvent_t
|
|
{
|
|
const char* m_pCommand;
|
|
int m_nTick;
|
|
bool m_bDown;
|
|
};
|
|
|
|
#endif // INPUTENUMS_H
|