From 1bc10d1408eb29b0675a030e029155dd046b1dd8 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 29 Dec 2011 13:06:40 -0700 Subject: Functions can be called now, at least manually. A little more work needs to be done before they're being called from code correctly. --- src/function.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/function.h') diff --git a/src/function.h b/src/function.h index 1191129..c1289f4 100644 --- a/src/function.h +++ b/src/function.h @@ -11,7 +11,7 @@ public: virtual ~Function(); virtual Bu::String getName() const=0; - virtual Variable call( const VariableList &lParams )=0; + virtual Variable call( class GameState &gState )=0; }; #endif -- cgit v1.2.3