mirror of https://github.com/PrimeDecomp/prime.git
17 lines
218 B
C++
17 lines
218 B
C++
|
#ifndef _CCOLLISIONACTOR_HPP
|
||
|
#define _CCOLLISIONACTOR_HPP
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
#include "MetroidPrime/CPhysicsActor.hpp"
|
||
|
|
||
|
class CCollisionActor : public CPhysicsActor {
|
||
|
public:
|
||
|
// TODO
|
||
|
|
||
|
private:
|
||
|
// TODO
|
||
|
};
|
||
|
|
||
|
#endif
|