aboutsummaryrefslogtreecommitdiffstats
path: root/include/YAGE/Physics/collisionbody.hpp
blob: b7403e815d6a64168a2428143abb3e8c11beb46a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* ----------------------------------------------------------------------------
 * collisionbody.hpp
 *
 * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
 * See file LICENSE for more details
 * ----------------------------------------------------------------------------
 */

#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