diff options
author | Mike Buland <eichlan@xagasoft.com> | 2012-01-03 00:08:48 -0700 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2012-01-03 00:08:48 -0700 |
commit | 8b9a15a755ebc6681ff6be808615e375cb567080 (patch) | |
tree | c836f3a7a338e6bcc1fe88fe1207819005b92a83 /src/functionfloat.cpp | |
parent | 340de5ebabbc60727b2aeb85b9faa72a75f1628b (diff) | |
download | stage-8b9a15a755ebc6681ff6be808615e375cb567080.tar.gz stage-8b9a15a755ebc6681ff6be808615e375cb567080.tar.bz2 stage-8b9a15a755ebc6681ff6be808615e375cb567080.tar.xz stage-8b9a15a755ebc6681ff6be808615e375cb567080.zip |
New functions, fixes, and a working bloodfields.
Diffstat (limited to 'src/functionfloat.cpp')
-rw-r--r-- | src/functionfloat.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/functionfloat.cpp b/src/functionfloat.cpp new file mode 100644 index 0000000..7d6a0a5 --- /dev/null +++ b/src/functionfloat.cpp | |||
@@ -0,0 +1,17 @@ | |||
1 | #include "functionfloat.h" | ||
2 | |||
3 | #include "gamestate.h" | ||
4 | |||
5 | FunctionFloat::FunctionFloat() | ||
6 | { | ||
7 | } | ||
8 | |||
9 | FunctionFloat::~FunctionFloat() | ||
10 | { | ||
11 | } | ||
12 | |||
13 | void FunctionFloat::call( class GameState &gState ) | ||
14 | { | ||
15 | gState.push( gState.popDeref().to( Variable::tFloat ) ); | ||
16 | } | ||
17 | |||