From 0010abfd8f9ce65ce3fad7c5f8c2da4f9aedbe94 Mon Sep 17 00:00:00 2001 From: =?utf8?q?C=C3=B4me=20Chilliet?= Date: Tue, 29 Nov 2016 16:30:12 +0700 Subject: [PATCH] Person::occluded should be an int --- Source/Person.cpp | 3 +-- Source/Person.h | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Source/Person.cpp b/Source/Person.cpp index 421709b..71c0660 100644 --- a/Source/Person.cpp +++ b/Source/Person.cpp @@ -288,6 +288,7 @@ Person::Person() : stunned(0), surprised(0), runninghowlong(0), + occluded(0), lastoccluded(0), laststanding(0), escapednum(0), @@ -302,8 +303,6 @@ Person::Person() : tempanimation(), - occluded(0), - jumpclimb(false) { } diff --git a/Source/Person.h b/Source/Person.h index 9739d39..a11f22b 100644 --- a/Source/Person.h +++ b/Source/Person.h @@ -302,6 +302,7 @@ public: float stunned; float surprised; float runninghowlong; + int occluded; int lastoccluded; int laststanding; int escapednum; @@ -316,8 +317,6 @@ public: Animation tempanimation; - float occluded; - bool jumpclimb; Person(); -- 2.39.2