]> git.tdb.fi Git - libs/demoscene.git/blobdiff - source/resources.cpp
Put everything in namespace Msp::DemoScene
[libs/demoscene.git] / source / resources.cpp
index e5e893d58dc9e283ed35ffe33f88aab7c9e1d1c6..1742f06d41694cdb689b2db6be0a3b17be617d5a 100644 (file)
@@ -3,7 +3,9 @@
 #include "resources.h"
 
 using namespace std;
-using namespace Msp;
+
+namespace Msp {
+namespace DemoScene {
 
 Resources::Resources(const string &pack_name):
        ui_font(0),
@@ -46,3 +48,6 @@ void Resources::set_ui_text_resources(const string &font, const string &tech)
        ui_font = &get<GL::Font>(font);
        ui_text_technique = &get<GL::Technique>(tech);
 }
+
+} // namespace DemoScene
+} // namespace Msp