forked from gameprogcpp/code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDialogBox.h
More file actions
19 lines (17 loc) · 569 Bytes
/
DialogBox.h
File metadata and controls
19 lines (17 loc) · 569 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// ----------------------------------------------------------------
// From Game Programming in C++ by Sanjay Madhav
// Copyright (C) 2017 Sanjay Madhav. All rights reserved.
//
// Released under the BSD License
// See LICENSE in root directory for full details.
// ----------------------------------------------------------------
#pragma once
#include "UIScreen.h"
class DialogBox : public UIScreen
{
public:
// (Lower draw order corresponds with further back)
DialogBox(class Game* game, const std::string& text,
std::function<void()> onOK);
~DialogBox();
};