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