Added an error message if a level fails to load.

This commit is contained in:
MusicalProgrammer
2019-11-05 20:47:06 -05:00
parent 39173f34a1
commit 6eed189855
3 changed files with 26 additions and 1 deletions

View File

@@ -1,4 +1,6 @@
#pragma once
#include <string>
void OnError(int err, std::string msg = "");
void OnError(int err, std::string msg = "");
void MessageBoxStr(std::string msg);
void MessageBoxStream(std::stringstream msg);