6da4e875d0dd9dc8df3ea521856432330151b165
[supertux.git] / src / scripting / display.cpp
1 #include <config.h>
2
3 #include <string>
4 #include <stdio.h>
5 #include "display.h"
6
7 #define NOIMPL      printf(__FUNCTION__ " not implemented\n");
8
9 namespace Scripting
10 {
11   Display::Display()
12   {}
13
14   Display::~Display()
15   {}
16
17   void
18   Display::set_effect(const std::string& )
19   {}
20 }
21