Newer
Older
Import / applications / HighwayDash / ports / Game / WelcomeState.cpp
@John Ryland John Ryland on 22 Dec 2020 345 bytes import NUC files
#include "WelcomeState.h"
#include "GameSim.h"
#include "Graphics.h"


void WelcomeState::Enter(GameGraphics& graphics)
{
  std::vector<Game::GameObjectList*> objectLists;
  graphics.resetVertexBuffers(objectLists);
}


bool WelcomeState::Update(GameUi::DrawItems &/*items*/, float /*a_elapsed*/)
{
  return true; // has to be exited via ui
}