From 3a5a0e7b42d34baa238895f9e4d86cfd902ace7d Mon Sep 17 00:00:00 2001 From: TravisBot <> Date: Sat, 23 Dec 2017 00:51:44 +0000 Subject: [Travis] Rebuilding documentation --- inputmanager_8h_source.html | 151 -------------------------------------------- 1 file changed, 151 deletions(-) delete mode 100644 inputmanager_8h_source.html (limited to 'inputmanager_8h_source.html') diff --git a/inputmanager_8h_source.html b/inputmanager_8h_source.html deleted file mode 100644 index 5fbcf86b..00000000 --- a/inputmanager_8h_source.html +++ /dev/null @@ -1,151 +0,0 @@ - - - - - - -YAGE: yage/core/inputmanager.h Source File - - - - - - - - - - - - - -
-
- - - - - - -
-
YAGE -  v0.1.3 -
-
Yet Another Game Engine
-
-
- - - - - -
-
- -
-
-
- -
- -
- All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
- - -
- -
- -
-
-
inputmanager.h
-
-
-Go to the documentation of this file.
1 
-
9 #ifndef INPUT_MANAGER_H
-
10 #define INPUT_MANAGER_H
-
11 
-
12 #include <unordered_map>
-
13 
-
14 namespace yage
-
15 {
-
16 
- -
18 {
-
19 private:
-
20  std::unordered_map<unsigned, bool> key_map_;
-
21 
-
22 public:
-
23  void keyPressed(unsigned key);
-
24  void keyReleased(unsigned key);
-
25  bool isKeyPressed(unsigned key) const;
-
26 };
-
27 
-
28 } // namespace yage
-
29 
-
30 #endif
-
void keyReleased(unsigned key)
Definition: inputmanager.cpp:19
-
Definition: inputmanager.h:17
-
void keyPressed(unsigned key)
Definition: inputmanager.cpp:14
-
std::unordered_map< unsigned, bool > key_map_
Definition: inputmanager.h:20
-
bool isKeyPressed(unsigned key) const
Definition: inputmanager.cpp:24
-
-
- - - - -- cgit