summaryrefslogtreecommitdiff
path: root/src/functiondelete.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2011-12-30 09:59:47 -0700
committerMike Buland <eichlan@xagasoft.com>2011-12-30 09:59:47 -0700
commit9e6dc529833d17374a73bae1f30c7970f936f7cc (patch)
treedf46666b06065d6aefaf64e5722b57ff07f0a9e8 /src/functiondelete.h
parent00fb7e6f65faf72a85c72f3775e49345aeb7442f (diff)
downloadstage-9e6dc529833d17374a73bae1f30c7970f936f7cc.tar.gz
stage-9e6dc529833d17374a73bae1f30c7970f936f7cc.tar.bz2
stage-9e6dc529833d17374a73bae1f30c7970f936f7cc.tar.xz
stage-9e6dc529833d17374a73bae1f30c7970f936f7cc.zip
Functions exists/delete work now.
Diffstat (limited to 'src/functiondelete.h')
-rw-r--r--src/functiondelete.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/functiondelete.h b/src/functiondelete.h
new file mode 100644
index 0000000..3545343
--- /dev/null
+++ b/src/functiondelete.h
@@ -0,0 +1,16 @@
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