diff options
| author | KiritoDv <36680385+KiritoDv@users.noreply.github.com> | 2025-05-16 02:44:40 +0000 |
|---|---|---|
| committer | github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | 2025-05-16 02:44:40 +0000 |
| commit | b53a5dbcfa24ef2aa4860b6d9512709976686de8 (patch) | |
| tree | 441f2bb9c0bc8f955eb9289d19b13beab5c239c5 /src/engine/ModelLoader.h | |
| parent | bdf5ca8d603ae56ac275bebf9fde58ae72484d76 (diff) | |
clang formatclang-format
Diffstat (limited to 'src/engine/ModelLoader.h')
| -rw-r--r-- | src/engine/ModelLoader.h | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/src/engine/ModelLoader.h b/src/engine/ModelLoader.h index e89c7c457..56720b365 100644 --- a/src/engine/ModelLoader.h +++ b/src/engine/ModelLoader.h @@ -10,16 +10,16 @@ extern "C" { class Course; /** - * + * * Lists are deferred until load time so that models that use the same course may all use the same extraction - * + * * Note ensure that the buffers passed to LoadModelList are big enough for the requested data. - * + * * This class should only be ran once. - * - * + * + * * Usage: - * + * * ModelLoader::LoadModelList bowserStatueList = { .course = gBowsersCastle, .gfxBuffer = &gBowserStatueGfx[0], @@ -29,13 +29,13 @@ class Course; .vtxBufferSize = 717, .vtxStart = 1942, }; - * + * * gModelLoader.Add(bowserStatueList); */ class ModelLoader { -public: + public: struct LoadModelList { Course* course; @@ -50,10 +50,9 @@ public: void Add(LoadModelList list); void Load(); -private: - struct CourseMap { - }; + private: + struct CourseMap {}; void Extract(Course* course); void UpdateVtx(LoadModelList list); |
