12 lines
333 B
C++
12 lines
333 B
C++
|
/////////////////////////////////////////////////////////////////////
|
||
|
// Created by Dan Andersson 2013
|
||
|
/////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
#include "ICollideable.h"
|
||
|
|
||
|
using namespace ::Oyster::Collision3D;
|
||
|
|
||
|
ICollideable::ICollideable( Type _type )
|
||
|
: type(_type) {}
|
||
|
|
||
|
ICollideable::~ICollideable() {}
|