mirror of
https://github.com/izzy2lost/Torch.git
synced 2026-07-06 00:18:35 -07:00
Update CourseVtx.h
This commit is contained in:
@@ -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; }
|
||||
};
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user