diff options
author | Mike Buland <eichlan@xagasoft.com> | 2011-12-21 02:27:51 -0700 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2011-12-21 02:27:51 -0700 |
commit | da250b9833e9561a996d11058130e8b7eca2369e (patch) | |
tree | cc1598a22411ae91a44c793ab25abf0a4efc2be8 /src/function.h | |
parent | df412b348f10ee46830e6e117b4bb0dd3b6b057b (diff) | |
download | stage-da250b9833e9561a996d11058130e8b7eca2369e.tar.gz stage-da250b9833e9561a996d11058130e8b7eca2369e.tar.bz2 stage-da250b9833e9561a996d11058130e8b7eca2369e.tar.xz stage-da250b9833e9561a996d11058130e8b7eca2369e.zip |
Game environment is coming together.
Diffstat (limited to 'src/function.h')
-rw-r--r-- | src/function.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/function.h b/src/function.h new file mode 100644 index 0000000..1191129 --- /dev/null +++ b/src/function.h | |||
@@ -0,0 +1,17 @@ | |||
1 | #ifndef FUNCTION_H | ||
2 | #define FUNCTION_H | ||
3 | |||
4 | #include <bu/string.h> | ||
5 | #include "variable.h" | ||
6 | |||
7 | class Function | ||
8 | { | ||
9 | public: | ||
10 | Function(); | ||
11 | virtual ~Function(); | ||
12 | |||
13 | virtual Bu::String getName() const=0; | ||
14 | virtual Variable call( const VariableList &lParams )=0; | ||
15 | }; | ||
16 | |||
17 | #endif | ||