0cd272018614201334b6b0b8f97d8dbf1153914b
[supertux.git] / src / scripting / display.h
1 #ifndef __DISPLAY_H__
2 #define __DISPLAY_H__
3
4 namespace Scripting
5 {
6
7 class Display
8 {
9 public:
10 #ifndef SCRIPTING_API
11     Display();
12     ~Display();
13 #endif
14
15     void set_effect(const std::string& effect);
16 };
17
18 }
19
20 #endif
21