74660102894abcfd977544ad81f905375be9fd02
[supertux.git] / src / supertux / resources.hpp
1 //  SuperTux
2 //  Copyright (C) 2003 Tobias Glaesser <tobi.web@gmx.de>
3 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
4 //
5 //  This program is free software: you can redistribute it and/or modify
6 //  it under the terms of the GNU General Public License as published by
7 //  the Free Software Foundation, either version 3 of the License, or
8 //  (at your option) any later version.
9 //
10 //  This program is distributed in the hope that it will be useful,
11 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 //  GNU General Public License for more details.
14 //
15 //  You should have received a copy of the GNU General Public License
16 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18 #ifndef HEADER_SUPERTUX_SUPERTUX_RESOURCES_HPP
19 #define HEADER_SUPERTUX_SUPERTUX_RESOURCES_HPP
20
21 #include "video/font_ptr.hpp"
22 #include "video/surface_ptr.hpp"
23 #include "supertux/tile_set.hpp"
24
25 class MouseCursor;
26
27 class Resources
28 {
29 public:
30   static MouseCursor* mouse_cursor;
31
32   static FontPtr fixed_font;
33   static FontPtr normal_font;
34   static FontPtr small_font;
35   static FontPtr big_font;
36
37   static SurfacePtr checkbox;
38   static SurfacePtr checkbox_checked;
39   static SurfacePtr back;
40   static SurfacePtr arrow_left;
41   static SurfacePtr arrow_right;
42   
43 public:
44   static void load_shared();
45   static void unload_shared();
46 };
47
48 #endif
49
50 /* EOF */