From a2cbf0f5948c89334511aff60df12f4a77b4bb5e Mon Sep 17 00:00:00 2001 From: daniel-Jones Date: Tue, 16 Aug 2016 08:20:06 +0930 Subject: Many changes to the stat viewer - work on the stat viewer halted for now. I have added CS:GO game integration. You can now view live game information. Uses port 3000 (see the CS:GO wiki for setting up game integration). --- message_box.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 message_box.h (limited to 'message_box.h') diff --git a/message_box.h b/message_box.h new file mode 100644 index 0000000..cf1cf08 --- /dev/null +++ b/message_box.h @@ -0,0 +1,13 @@ +#ifndef MESSAGE_BOX_H +#define MESSAGE_BOX_H +#include + +class message_box +{ +public: + message_box(); + void info_box(QString message, QString title); + int confirm_box(QString warning, QString message, QString title); +}; + +#endif // MESSAGE_BOX_H -- cgit v1.2.3