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

#include "function.h"

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

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

#endif