mirror of https://github.com/AxioDL/metaforce.git
19 lines
296 B
C++
19 lines
296 B
C++
|
#ifndef __URDE_CPATHFINDLINK_HPP__
|
||
|
#define __URDE_CPATHFINDLINK_HPP__
|
||
|
|
||
|
#include "RetroTypes.hpp"
|
||
|
|
||
|
namespace urde
|
||
|
{
|
||
|
class CPFLink
|
||
|
{
|
||
|
public:
|
||
|
void GetRegion() const;
|
||
|
void GetNode() const;
|
||
|
void Get2dWidth() const;
|
||
|
void GetOO2dWidth() const;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif // __URDE_CPATHFINDLINK_HPP__
|