summaryrefslogtreecommitdiff
path: root/src/functionjoin.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/functionjoin.h')
-rw-r--r--src/functionjoin.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/functionjoin.h b/src/functionjoin.h
new file mode 100644
index 0000000..7c46e7f
--- /dev/null
+++ b/src/functionjoin.h
@@ -0,0 +1,16 @@
1#ifndef FUNCTION_JOIN_H
2#define FUNCTION_JOIN_H
3
4#include "function.h"
5
6class FunctionJoin : public Function
7{
8public:
9 FunctionJoin();
10 virtual ~FunctionJoin();
11
12 virtual Bu::String getName() const { return "join"; }
13 virtual void call( class GameState &gState );
14};
15
16#endif