From 3e8e4807299bc1fcafe3bedc7b9ba053c2c8c087 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matt=C3=A9o=20Delabre?= Date: Wed, 9 Mar 2016 19:21:55 +0100 Subject: [PATCH] Correction d'une typo dans PhysicsObject --- physics_object.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/physics_object.hpp b/physics_object.hpp index 07b5c88..862cc37 100644 --- a/physics_object.hpp +++ b/physics_object.hpp @@ -3,10 +3,10 @@ #include #include -#include "state.hpp" #include "object.hpp" +#include "state.hpp" -class PhysicsObject : class Object { +class PhysicsObject : public Object { protected: sf::Vector2f velocity; float mass;