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


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


class WelcomeState : public BlankState
{
public:
  void Enter(GameGraphics& graphics) override;
  bool Update(GameUi::DrawItems &items, float a_elapsed) override;
};


#endif // WELCOME_STATE_H