Cleanup std namespace usage.

This commit is contained in:
brunoherbelin
2020-03-24 00:02:56 +01:00
parent a8167fd684
commit cf6ef69342
6 changed files with 26 additions and 24 deletions

View File

@@ -3,16 +3,14 @@
#include "defines.h"
#include <string>
#include <list>
using namespace std;
namespace Settings {
struct Window
{
string name;
std::string name;
int x,y,w,h;
bool fullscreen;
@@ -22,10 +20,10 @@ struct Window
struct Application
{
string name;
std::string name;
float scale;
int color;
list<Window> windows;
std::list<Window> windows;
Application() : name(APP_NAME), scale(1.f), color(0){
windows.push_back(Window());