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


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


void BlankState::Draw(GameGraphics& graphics)
{
  graphics.prepareScreenContext();
}


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