summaryrefslogtreecommitdiff
path: root/src/functioninteger.h
blob: 2832c20d264804aacb145b4adfd34a8108642c88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef FUNCTION_INTEGER_H
#define FUNCTION_INTEGER_H

#include "function.h"

class FunctionInteger : public Function
{
public:
	FunctionInteger();
	virtual ~FunctionInteger();

	virtual Bu::String getName() const { return "integer"; }
	virtual void call( class GameState &gState );
};

#endif