- More work on scripting interface
[supertux.git] / src / scripting / level.cpp
1 #include <config.h>
2
3 #include <string>
4 #include <stdio.h>
5 #include "level.h"
6
7 #define NOIMPL      printf("%s not implemented.\n", __PRETTY_FUNCTION__);
8
9 namespace Scripting
10 {
11   Level::Level()
12   {}
13
14   Level::~Level()
15   {}
16
17   void
18   Level::finish()
19   {
20     NOIMPL;
21   }
22
23   void
24   Level::spawn(const std::string& , const std::string& )
25   {
26     NOIMPL;
27   }
28 }