Correction d'une typo dans PhysicsObject
This commit is contained in:
parent
ebd1cc15d6
commit
3e8e480729
|
@ -3,10 +3,10 @@
|
||||||
|
|
||||||
#include <SFML/Graphics.hpp>
|
#include <SFML/Graphics.hpp>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include "state.hpp"
|
|
||||||
#include "object.hpp"
|
#include "object.hpp"
|
||||||
|
#include "state.hpp"
|
||||||
|
|
||||||
class PhysicsObject : class Object {
|
class PhysicsObject : public Object {
|
||||||
protected:
|
protected:
|
||||||
sf::Vector2f velocity;
|
sf::Vector2f velocity;
|
||||||
float mass;
|
float mass;
|
||||||
|
|
Loading…
Reference in New Issue