Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/gameengine/Expressions/EXP_IfExpr.h')
-rw-r--r--source/gameengine/Expressions/EXP_IfExpr.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/gameengine/Expressions/EXP_IfExpr.h b/source/gameengine/Expressions/EXP_IfExpr.h
index 43b4b8faf53..929f3a3ada9 100644
--- a/source/gameengine/Expressions/EXP_IfExpr.h
+++ b/source/gameengine/Expressions/EXP_IfExpr.h
@@ -21,7 +21,7 @@
#include "EXP_Expression.h"
-class CIfExpr : public CExpression
+class CIfExpr : public CExpression
{
//PLUGIN_DECLARE_SERIAL_EXPRESSION (CIfExpr,CExpression)
@@ -32,11 +32,11 @@ public:
virtual bool MergeExpression(CExpression* otherexpr);
CIfExpr(CExpression *guard, CExpression *e1, CExpression *e2);
CIfExpr();
-
+
virtual unsigned char GetExpressionID();
virtual ~CIfExpr();
virtual CValue* Calculate();
-
+
virtual bool IsInside(float x,float y,float z,bool bBorderInclude=true);
virtual bool NeedsRecalculated();