ELEC2645 (2018/19) / Mbed 2 deprecated el17ajf

Dependencies:   mbed

Fork of el17ajf by Angus Findlay

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