mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-20 23:33:59 -07:00
Terrain: added terrain-editing code to CTerrain, for better encapsulation or something. Console: simplified screen resizing. Game/etc: removed some unnecessary header file inclusions. This was SVN commit r2459.
8 lines
148 B
C++
8 lines
148 B
C++
#include "GameLoop.h"
|
|
|
|
class InputProcessor
|
|
{
|
|
public:
|
|
// Returns true if the camera has moved
|
|
bool ProcessInput(GameLoopState* state);
|
|
};
|