diff options
Diffstat (limited to 'engines/lastexpress/game/state.h')
| -rw-r--r-- | engines/lastexpress/game/state.h | 11 | 
1 files changed, 8 insertions, 3 deletions
diff --git a/engines/lastexpress/game/state.h b/engines/lastexpress/game/state.h index d97ebc1b55..8f71e7d424 100644 --- a/engines/lastexpress/game/state.h +++ b/engines/lastexpress/game/state.h @@ -18,9 +18,6 @@   * along with this program; if not, write to the Free Software   * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.   * - * $URL$ - * $Id$ - *   */  #ifndef LASTEXPRESS_STATE_H @@ -28,8 +25,10 @@  #include "lastexpress/shared.h" +#include "common/rect.h"  #include "common/serializer.h"  #include "common/system.h" +#include "common/textconsole.h"  namespace LastExpress { @@ -564,6 +563,9 @@ public:  		bool mouseLeftClick;  		bool mouseRightClick; +		bool mouseLeftPressed; +		bool mouseRightPressed; +  		bool flag_entities_0;  		bool flag_entities_1; @@ -585,6 +587,9 @@ public:  			mouseRightClick = false;  			mouseLeftClick = false; +			mouseLeftPressed = false; +			mouseRightPressed = false; +  			flag_entities_0 = false;  			flag_entities_1 = false;  | 
