Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Engine/Engine.cpp
- Committer:
- Andrew_M
- Date:
- 2018-04-16
- Revision:
- 1:a14415de3ad5
- Child:
- 2:9ca5e1c221c3
File content as of revision 1:a14415de3ad5:
#include "Engine.h" Engine::Engine() { } Engine::~Engine() { } void Engine::init() { // initialise the game parameters } void Engine::read_input(Gamepad &pad) { _d = pad.get_direction(); _mag = pad.get_mag(); } void Engine::draw(N5110 &lcd) { } void Engine::update(Gamepad &pad) { }