aboutsummaryrefslogtreecommitdiffstats
path: root/include/YAGE/Physics/collisionbody.hpp
blob: c5f8e1f6a18d6715d61608ebc8da72723d5fed08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef YAGE_COLLISION_BODY_HPP
#define YAGE_COLLISION_BODY_HPP

#include "Physics/body.hpp"

namespace yage
{

// a collision body will be a body that is static and not affected by gravity,
// with infinite mass
class CollisionBody : public Body
{
public:
    CollisionBody();
    virtual ~CollisionBody();
};

} // yage

#endif