Update CourseVtx.h

This commit is contained in:
MegaMech
2024-06-03 20:51:16 -06:00
committed by Lywx
parent beda6c05a3
commit e7f124e5a8
+3 -10
View File
@@ -10,18 +10,11 @@ namespace MK64 {
uint8_t cn[4]; /* color & alpha */
};
struct VtxRaw {
int16_t ob[3]; /* x, y, z */
uint16_t flag;
int16_t tc[2]; /* texture coord */
uint8_t cn[4]; /* color & alpha */
};
class CourseVtxData : public IParsedData {
public:
std::vector<VtxRaw> mVtxs;
std::vector<CourseVtx> mVtxs;
explicit CourseVtxData(std::vector<VtxRaw> vtxs) : mVtxs(vtxs) {}
explicit CourseVtxData(std::vector<CourseVtx> vtxs) : mVtxs(vtxs) {}
};
class CourseVtxHeaderExporter : public BaseExporter {
@@ -52,4 +45,4 @@ namespace MK64 {
bool SupportModdedAssets() override { return false; }
};
}
}