17 lines
286 B
C
17 lines
286 B
C
|
/**
|
||
|
* @file le_functions.h
|
||
|
*
|
||
|
* @date Oct 5, 2014
|
||
|
* @author Andrey Belomutskiy, (c) 2012-2014
|
||
|
*/
|
||
|
|
||
|
#ifndef LE_FUNCTIONS_H_
|
||
|
#define LE_FUNCTIONS_H_
|
||
|
|
||
|
#include "engine.h"
|
||
|
#include "logic_expression.h"
|
||
|
|
||
|
float getLEValue(Engine *engine, le_action_e action);
|
||
|
|
||
|
#endif /* LE_FUNCTIONS_H_ */
|