e0217424d508d54e32fb6ecf85cd52b66ccad83e
[supertux.git] / src / scripting / level.h
1 #ifndef __LEVEL_H__
2 #define __LEVEL_H__
3
4 namespace Scripting
5 {
6
7 class Level
8 {
9 public:
10 #ifndef SCRIPTING_API
11     Level();
12     ~Level();
13 #endif
14
15     /** Instantly finish the currently played level */
16     void finish();
17     /** spawn tux at specified sector and spawnpoint */
18     void spawn(const std::string& sector, const std::string& spawnpoint);
19 };
20
21 }
22
23 #endif
24