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_IntValue.h')
-rw-r--r--source/gameengine/Expressions/EXP_IntValue.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/gameengine/Expressions/EXP_IntValue.h b/source/gameengine/Expressions/EXP_IntValue.h
index a1cd96a888e..8c66ba7c3bf 100644
--- a/source/gameengine/Expressions/EXP_IntValue.h
+++ b/source/gameengine/Expressions/EXP_IntValue.h
@@ -22,9 +22,9 @@
#include "EXP_Value.h"
-typedef long long cInt;
+typedef long long cInt;
-class CIntValue : public CPropValue
+class CIntValue : public CPropValue
{
//PLUGIN_DECLARE_SERIAL (CIntValue,CValue)
@@ -32,14 +32,14 @@ public:
virtual const STR_String& GetText();
virtual double GetNumber();
virtual int GetValueType();
-
+
cInt GetInt();
CIntValue();
CIntValue(cInt innie);
CIntValue(cInt innie,
const char *name,
AllocationTYPE alloctype=CValue::HEAPVALUE);
-
+
virtual CValue* Calc(VALUE_OPERATOR op,
CValue *val);