From: Côme Chilliet Date: Tue, 29 Nov 2016 09:30:12 +0000 (+0700) Subject: Person::occluded should be an int X-Git-Url: https://git.jsancho.org/?a=commitdiff_plain;h=0010abfd8f9ce65ce3fad7c5f8c2da4f9aedbe94;p=lugaru.git Person::occluded should be an int --- 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();