mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-19 06:43:58 -07:00
13 lines
240 B
C++
13 lines
240 B
C++
#ifndef INCLUDED_INPUTPROCESSOR
|
|
#define INCLUDED_INPUTPROCESSOR
|
|
|
|
#include "GameLoop.h"
|
|
|
|
class InputProcessor
|
|
{
|
|
public:
|
|
// Returns true if the camera has moved
|
|
bool ProcessInput(GameLoopState* state);
|
|
};
|
|
|
|
#endif // INCLUDED_INPUTPROCESSOR
|