Newer
Older
Import / applications / HighwayDash / ports / Game / MotdState.h
@John Ryland John Ryland on 22 Dec 2020 299 bytes import NUC files
#ifndef MOTD_STATE_H
#define MOTD_STATE_H


#include "BlankState.h"
#include "GameSim.h"


class MotdState : public BlankState
{
public:
  void Enter(GameGraphics& graphics) override;
  void Draw(GameGraphics& graphics) override;
private:
  const char* m_motdStr = "";
};


#endif // MOTD_STATE_H