mirror of
https://github.com/libretro/RACE.git
synced 2024-11-23 17:09:53 +00:00
20 lines
297 B
C++
20 lines
297 B
C++
/* input.cpp: implementation of the input class. */
|
|
|
|
#include "StdAfx.h"
|
|
#include "main.h"
|
|
#include "input.h"
|
|
#include "memory.h"
|
|
|
|
/* address where the state of the input device(s) is stored */
|
|
unsigned char ngpInputState = 0;
|
|
|
|
BOOL InitInput(void)
|
|
{
|
|
return TRUE;
|
|
}
|
|
|
|
void FreeInput(void)
|
|
{
|
|
|
|
}
|