blob: 52f4d6555d6823c3bb91b69042460b9d5e21d816 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef __ASURA_RUNNER_H__
#define __ASURA_RUNNER_H__
#include <windows.h>
#include <asura-core/input/input_device.h>
namespace AsuraRunner
{
class SDLInputDevice : public AEInput::InputDevice
{
public:
};
}
#endif
|