diff options
author | Mike Buland <eichlan@xagasoft.com> | 2011-12-30 09:59:47 -0700 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2011-12-30 09:59:47 -0700 |
commit | 9e6dc529833d17374a73bae1f30c7970f936f7cc (patch) | |
tree | df46666b06065d6aefaf64e5722b57ff07f0a9e8 /src/function.h | |
parent | 00fb7e6f65faf72a85c72f3775e49345aeb7442f (diff) | |
download | stage-9e6dc529833d17374a73bae1f30c7970f936f7cc.tar.gz stage-9e6dc529833d17374a73bae1f30c7970f936f7cc.tar.bz2 stage-9e6dc529833d17374a73bae1f30c7970f936f7cc.tar.xz stage-9e6dc529833d17374a73bae1f30c7970f936f7cc.zip |
Functions exists/delete work now.
Diffstat (limited to 'src/function.h')
-rw-r--r-- | src/function.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/function.h b/src/function.h index c1289f4..6696d5a 100644 --- a/src/function.h +++ b/src/function.h | |||
@@ -11,7 +11,7 @@ public: | |||
11 | virtual ~Function(); | 11 | virtual ~Function(); |
12 | 12 | ||
13 | virtual Bu::String getName() const=0; | 13 | virtual Bu::String getName() const=0; |
14 | virtual Variable call( class GameState &gState )=0; | 14 | virtual void call( class GameState &gState )=0; |
15 | }; | 15 | }; |
16 | 16 | ||
17 | #endif | 17 | #endif |