Last change
on this file since 1712 was
1361,
checked in by sam, 11 years ago
|
win32: add an Xinput class for Xbox360 controllers, because they're not
properly detected using the generic SDL driver.
|
File size:
797 bytes
|
Line | |
---|
1 | // |
---|
2 | // Lol Engine |
---|
3 | // |
---|
4 | // Copyright: (c) 2010-2012 Sam Hocevar <sam@hocevar.net> |
---|
5 | // This program is free software; you can redistribute it and/or |
---|
6 | // modify it under the terms of the Do What The Fuck You Want To |
---|
7 | // Public License, Version 2, as published by Sam Hocevar. See |
---|
8 | // http://sam.zoy.org/projects/COPYING.WTFPL for more details. |
---|
9 | // |
---|
10 | |
---|
11 | // |
---|
12 | // The D3d9Input class |
---|
13 | // ------------------- |
---|
14 | // |
---|
15 | |
---|
16 | #if !defined __LOL_D3D9INPUT_H__ |
---|
17 | #define __LOL_D3D9INPUT_H__ |
---|
18 | |
---|
19 | #include "entity.h" |
---|
20 | |
---|
21 | namespace lol |
---|
22 | { |
---|
23 | |
---|
24 | class D3d9InputData; |
---|
25 | |
---|
26 | class D3d9Input : public Entity |
---|
27 | { |
---|
28 | public: |
---|
29 | D3d9Input(); |
---|
30 | virtual ~D3d9Input(); |
---|
31 | |
---|
32 | protected: |
---|
33 | virtual void TickGame(float seconds); |
---|
34 | virtual void TickDraw(float seconds); |
---|
35 | |
---|
36 | private: |
---|
37 | D3d9InputData *m_data; |
---|
38 | }; |
---|
39 | |
---|
40 | } /* namespace lol */ |
---|
41 | |
---|
42 | #endif // __LOL_D3D9INPUT_H__ |
---|
43 | |
---|
Note: See
TracBrowser
for help on using the repository browser.