blob: abd457e100be004403743ced24e44ba105ef3f4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#pragma once
#include "ship/resource/Resource.h"
#include <vector>
#include <libultra/gbi.h>
#include "src/engine/tracks/Track.h"
namespace MK64 {
class TrackSectionsClass : public Ship::Resource<TrackSections> {
public:
using Resource::Resource;
TrackSectionsClass();
TrackSections* GetPointer() override;
size_t GetPointerSize() override;
std::vector<TrackSections> TrackSectionsList;
};
class TrackSectionsO2RClass : public Ship::Resource<TrackSections> {
public:
using Resource::Resource;
TrackSectionsO2RClass();
TrackSections* GetPointer() override;
size_t GetPointerSize() override;
std::vector<TrackSections> TrackSectionsList;
};
} // namespace MK64
|