NerfStatTrak/StateLoseTheGame.cpp
Mark van Renswoude ba58eb93c0 Moved away from proof of concepts, started prototyping for the final software
- Button library
- State handling and transitions
- Default state: dual counter display
- User unknown state: static for now
- Lost the game state: static for now
2016-12-04 19:53:43 +01:00

19 lines
302 B
C++

#include "StateLoseTheGame.h"
#include "Globals.h"
#include "StateDefault.h"
void LoseTheGameState::setup()
{
}
void LoseTheGameState::loop()
{
if (buttonA->pressed() || buttonB->pressed())
{
setCurrentState(new DefaultState());
}
char text[] = "Lost";
display->writeTextLeft(text);
}