From e7f124e5a804d2d244c7988e87b498338b604924 Mon Sep 17 00:00:00 2001 From: MegaMech Date: Sat, 1 Jun 2024 20:18:26 -0600 Subject: [PATCH] Update CourseVtx.h --- src/factories/mk64/CourseVtx.h | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/src/factories/mk64/CourseVtx.h b/src/factories/mk64/CourseVtx.h index 8c67808..ffe876b 100644 --- a/src/factories/mk64/CourseVtx.h +++ b/src/factories/mk64/CourseVtx.h @@ -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 mVtxs; + std::vector mVtxs; - explicit CourseVtxData(std::vector vtxs) : mVtxs(vtxs) {} + explicit CourseVtxData(std::vector vtxs) : mVtxs(vtxs) {} }; class CourseVtxHeaderExporter : public BaseExporter { @@ -52,4 +45,4 @@ namespace MK64 { bool SupportModdedAssets() override { return false; } }; -} \ No newline at end of file +}