00001 // SuperTux 00002 // Copyright (C) 2003 Tobias Glaesser <tobi.web@gmx.de> 00003 // Copyright (C) 2006 Matthias Braun <matze@braunis.de> 00004 // 00005 // This program is free software: you can redistribute it and/or modify 00006 // it under the terms of the GNU General Public License as published by 00007 // the Free Software Foundation, either version 3 of the License, or 00008 // (at your option) any later version. 00009 // 00010 // This program is distributed in the hope that it will be useful, 00011 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 // GNU General Public License for more details. 00014 // 00015 // You should have received a copy of the GNU General Public License 00016 // along with this program. If not, see <http://www.gnu.org/licenses/>. 00017 00018 #ifndef HEADER_SUPERTUX_SUPERTUX_RESOURCES_HPP 00019 #define HEADER_SUPERTUX_SUPERTUX_RESOURCES_HPP 00020 00021 #include "video/font_ptr.hpp" 00022 00023 class MouseCursor; 00024 00025 class Resources 00026 { 00027 public: 00028 static MouseCursor* mouse_cursor; 00029 00030 static FontPtr fixed_font; 00031 static FontPtr normal_font; 00032 static FontPtr small_font; 00033 static FontPtr big_font; 00034 00035 public: 00036 static void load_shared(); 00037 static void unload_shared(); 00038 }; 00039 00040 #endif 00041 00042 /* EOF */