mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-17 17:11:20 +00:00
15 lines
233 B
C++
15 lines
233 B
C++
#ifndef __URDE_MP1_CPARASITE_HPP__
|
|
#define __URDE_MP1_CPARASITE_HPP__
|
|
|
|
#include "World/CWallWalker.hpp"
|
|
|
|
namespace urde::MP1
|
|
{
|
|
class CParasite : public CWallWalker
|
|
{
|
|
public:
|
|
CParasite();
|
|
};
|
|
}
|
|
#endif // __URDE_MP1_CPARASITE_HPP__
|