A complex 2D-dungeon game on LPC1768 in SWJTU-Leeds Joint School XJEL2645 project. Referenced from the framework contributed by https://os.mbed.com/users/Siriagus/code/SimplePlatformGame/

Dependencies:   mbed N5110 ShiftReg PinDetect

MainMenu.h

Committer:
Siriagus
Date:
2015-05-01
Revision:
5:100d960fc6d5
Child:
6:edb48de563a9

File content as of revision 5:100d960fc6d5:

#ifndef MAIN_MENU_H
#define MAIN_MENU_H

#include "State.h"

class MainMenu : public State
{
    public:
        MainMenu(StateManager* fsm, N5110 *lcd, InputManager* input)
                : State(fsm, lcd, input) {init();}
                
        virtual void update(time_t dt);
        virtual void render();
    
    private:
        void init();
};


#endif