Final Submission. I have read and agreed with Statement of Academic Integrity.
Dependencies: mbed Gamepad N5110 Joystick
Game_engine/Game_engine.cpp@1:b9f3b7d869d8, 2019-05-08 (annotated)
- Committer:
- el16dlc
- Date:
- Wed May 08 19:32:05 2019 +0000
- Revision:
- 1:b9f3b7d869d8
- Child:
- 2:0bd6711eae26
2
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
el16dlc | 1:b9f3b7d869d8 | 1 | #include "Game_engine.h" |
el16dlc | 1:b9f3b7d869d8 | 2 | |
el16dlc | 1:b9f3b7d869d8 | 3 | GameEngine::GameEngine() { |
el16dlc | 1:b9f3b7d869d8 | 4 | } |
el16dlc | 1:b9f3b7d869d8 | 5 | |
el16dlc | 1:b9f3b7d869d8 | 6 | GameEngine::~GameEngine() { |
el16dlc | 1:b9f3b7d869d8 | 7 | } |
el16dlc | 1:b9f3b7d869d8 | 8 | |
el16dlc | 1:b9f3b7d869d8 | 9 | void GameEngine::draw(N5110 &lcd) { |
el16dlc | 1:b9f3b7d869d8 | 10 | lcd.drawRect(0,0,WIDTH,HEIGHT,FILL_TRANSPARENT); // Draws screen limits |
el16dlc | 1:b9f3b7d869d8 | 11 | } |