19#ifndef HEADER_RACE_GUI_HPP
20#define HEADER_RACE_GUI_HPP
28#include "states_screens/race_gui_base.hpp"
29#include "utils/cpp2011.hpp"
45 core::stringw m_subtitle;
52 void setFadeLevel(
float level) { m_fade_level = level; }
53 void setSubtitle(
const core::stringw& subtitle) { m_subtitle = subtitle; }
56 virtual void renderPlayerView(
const Camera *camera,
float dt) OVERRIDE {}
60 return core::dimension2du(1,1);
An abstract interface for the actual karts.
Definition: abstract_kart.hpp:62
This is the base class for all cameras.
Definition: camera.hpp:49
Handles the overlay for cutscenes.
Definition: cutscene_gui.hpp:41
virtual const core::dimension2du getMiniMapSize() const OVERRIDE
Returns the size of the texture on which to render the minimap to.
Definition: cutscene_gui.hpp:58
virtual void renderGlobal(float dt) OVERRIDE
Updates lightning related information.
Definition: cutscene_gui.cpp:41
Definition: material.hpp:48
An abstract base class for the two race guis (race_gui and race_result gui)
Definition: race_gui_base.hpp:50