aboutsummaryrefslogtreecommitdiffstats
path: root/include/YAGE/Physics/collider.hpp
blob: ff074f143250fc035771ee8dfadeaeeb5316824f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef YAGE_COLLIDER_HPP
#define YAGE_COLLIDER_HPP

// The Collider class helps collision detection

class Collider
{
public:
    virtual ~Collider();
};


#endif