19#ifndef HEADER_TUTORIAL_DIALOG_HPP
20#define HEADER_TUTORIAL_DIALOG_HPP
22#include "guiengine/modaldialog.hpp"
23#include "utils/cpp2011.hpp"
24#include "utils/leak_check.hpp"
43 virtual void onEnterPressedInternal() OVERRIDE;
44 virtual void onUpdate(
float dt) OVERRIDE;
47 GUIEngine::EventPropagation
processEvent(
const std::string& eventSource) OVERRIDE;
Abstract base class representing a modal dialog.
Definition: modaldialog.hpp:56
Messages shown during tutorial.
Definition: tutorial_message_dialog.hpp:31
virtual void onUpdate(float dt) OVERRIDE
Override to be notified of updates.
Definition: tutorial_message_dialog.cpp:85
GUIEngine::EventPropagation processEvent(const std::string &eventSource) OVERRIDE
Returns whether to block event propagation (usually, you will want to block events you processed)
Definition: tutorial_message_dialog.cpp:72