RACE/input.cpp

20 lines
297 B
C++
Raw Normal View History

2020-01-07 11:03:08 +00:00
/* input.cpp: implementation of the input class. */
2016-10-14 17:01:29 +00:00
#include "StdAfx.h"
#include "main.h"
#include "input.h"
#include "memory.h"
2020-01-07 11:03:08 +00:00
/* address where the state of the input device(s) is stored */
2016-10-14 17:01:29 +00:00
unsigned char ngpInputState = 0;
2020-01-07 11:51:09 +00:00
BOOL InitInput(void)
2016-10-14 17:01:29 +00:00
{
return TRUE;
}
void FreeInput(void)
2016-10-14 17:01:29 +00:00
{
}