Revert "Revert "added loadingscreen clas""

This reverts commit 7e6514581e.
This commit is contained in:
Remco
2016-06-21 23:12:02 +02:00
parent 7e6514581e
commit 97448bfabf
2 changed files with 66 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#pragma once
#include <string>
class LoadingScreen
{
public:
LoadingScreen();
~LoadingScreen();
void draw();
private:
std::string loading;
};