mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-13 20:31:21 +00:00
19 lines
374 B
C++
19 lines
374 B
C++
#ifndef URDE_CMODELPOINTSELECTOR_HPP
|
|
#define URDE_CMODELPOINTSELECTOR_HPP
|
|
|
|
#include "RetroTypes.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
|
|
class CModelPointSelector
|
|
{
|
|
public:
|
|
CModelPointSelector(const zeus::CVector3f& scale, int, int, float, float);
|
|
void GeneratePoints(const std::vector<std::pair<zeus::CVector3f, zeus::CVector3f>>& vn);
|
|
};
|
|
|
|
}
|
|
|
|
#endif // URDE_CMODELPOINTSELECTOR_HPP
|