mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-05-16 15:11:20 +00:00
17 lines
230 B
C++
17 lines
230 B
C++
#ifndef _CCOLLISIONACTOR
|
|
#define _CCOLLISIONACTOR
|
|
|
|
#include "types.h"
|
|
|
|
#include "MetroidPrime/CPhysicsActor.hpp"
|
|
|
|
class CCollisionActor : public CPhysicsActor {
|
|
public:
|
|
// TODO
|
|
|
|
private:
|
|
// TODO
|
|
};
|
|
|
|
#endif // _CCOLLISIONACTOR
|