mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-15 15:11:21 +00:00
16 lines
198 B
C++
16 lines
198 B
C++
#ifndef __RETRO_CPHYSICSACTOR_HPP__
|
|
#define __RETRO_CPHYSICSACTOR_HPP__
|
|
|
|
#include "CActor.hpp"
|
|
|
|
namespace Retro
|
|
{
|
|
|
|
class CPhysicsActor : public CActor
|
|
{
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __RETRO_CPHYSICSACTOR_HPP__
|