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.
Dependencies: mbed
Fork of el17ajf by
Engine/Engine.h
- Committer:
- el17ajf
- Date:
- 2019-03-15
- Revision:
- 8:5066ce13a430
- Parent:
- 6:a54df561f442
- Child:
- 15:afeefa3ceb61
File content as of revision 8:5066ce13a430:
#ifndef ENGINE_H
#define ENGINE_H
#include "Graphics.h"
#include "Menus.h"
#include "Game.h"
#include "Input.h"
class Engine {
private:
static const float FPS = 30;
Game game;
public:
/* Constructor */
Engine();
/* Destructor */
~Engine();
/* Game loop */
void loop();
};
#endif
