blob: 1389dc41ed4a855aa308351ebfeb37c41de5186e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "Minimap.h"
#include "libultraship/libultra/gbi.h"
namespace MK64 {
Minimap::Minimap() : Resource(std::shared_ptr<Ship::ResourceInitData>()) {
}
MinimapTexture* Minimap::GetPointer() {
return &Texture;
}
size_t Minimap::GetPointerSize() {
return sizeof(Texture);
}
} // namespace MK64
|