Tweak icecrusher draw layers to avoid objects (such as coins) from appearing inside...
[supertux.git] / src / video / font_ptr.hpp
index 8fcfb05..eb70319 100644 (file)
@@ -1,5 +1,5 @@
 //  SuperTux
-//  Copyright (C) 2009 Ingo Ruhnke <grumbel@gmx.de>
+//  Copyright (C) 2009 Ingo Ruhnke <grumbel@gmail.com>
 //
 //  This program is free software: you can redistribute it and/or modify
 //  it under the terms of the GNU General Public License as published by
 #ifndef HEADER_SUPERTUX_VIDEO_FONT_PTR_HPP
 #define HEADER_SUPERTUX_VIDEO_FONT_PTR_HPP
 
-#include <boost/shared_ptr.hpp>
+#include <memory>
 
 class Font;
-typedef boost::shared_ptr<Font> FontPtr;
+typedef std::shared_ptr<Font> FontPtr;
 
 #endif