blob: 9b65d30ce45867e1bc6e4e21a18ba298a99c649d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef FUNCTION_TARGETS_H
#define FUNCTION_TARGETS_H
#include "function.h"
class FunctionTargets : public Function
{
public:
FunctionTargets();
virtual ~FunctionTargets();
virtual Bu::FString getName() const;
virtual Variable call( Variable &input, VarList lParams );
};
#endif
|