- More work on scripting interface
[supertux.git] / src / scripting / functions.cpp
1 #include <stdio.h>
2 #include "functions.h"
3
4 namespace Scripting
5 {
6
7 void wait(float secs)
8 {
9     (void) secs;
10     printf("Wait not implemented.\n");
11 }
12
13 }
14