Danbias/Code/Game/GameLogic/CollisionManager.h

19 lines
257 B
C
Raw Normal View History

#ifndef COLLISIONMANAGER_H
#define COLLISIONMANAGER_H
#include "Object.h"
#include "PhysicsAPI.h"
namespace GameLogic
{
2013-12-19 12:32:23 +01:00
class CollisionManager
{
2013-12-19 12:32:23 +01:00
public:
//put general collision functions here that are not part of a specific object
};
}
#endif