starting final code : Keyboard class

This commit is contained in:
2019-02-06 09:03:52 +01:00
parent 385ea59507
commit 57b25ff7b1
8 changed files with 731 additions and 501 deletions
View File
+15
View File
@@ -0,0 +1,15 @@
#ifndef _KEYBOARD_H_
#define _KEYBOARD_H_
class Keyboard {
public:
Keyboard();
~Keyboard();
int getKey();
private:
}
#endif