Class containing all the bitmaps for the 10 different mazes used throughout the game.

Maze.h

Committer:
el15mh
Date:
2017-04-04
Revision:
0:d5a32831fa28
Child:
1:8ed19eb9e7e5

File content as of revision 0:d5a32831fa28:

//
//  maze.h
//  
//
//  Created by Max Houghton on 19/03/2017.
//
//

#ifndef MAZE_H
#define MAZE_H

#include "mbed.h"
#include "N5110.h"

class Maze
{
    
public:
    
    Maze();
    ~Maze();
    
    void drawBox(N5110 &lcd);
    void drawTest(N5110 &lcd);
    void drawMazeOne(N5110 &lcd);
    void drawMazeTwo(N5110 &lcd);

private:
    
    
};

#endif /* MAZE_H */