diff options
| author | SammygoodTunes <sygamerz@gmail.com> | 2025-01-11 20:23:35 +0100 |
|---|---|---|
| committer | SammygoodTunes <sygamerz@gmail.com> | 2025-01-11 20:23:35 +0100 |
| commit | c09ea66d5c9c2555eb1d56650ec38a69a25a28a6 (patch) | |
| tree | 9b85ab9a224e62a8ca4c063a323c8dc51941c619 /src/00_Core | |
| parent | 090b1ae50ee4c3c13f7b4bd0734d8be22491fe76 (diff) | |
Decompile MapManager::GetMapMinX
Decompile MapManager::GetMapMinZ
Decompile MapManager::GetMapMaxX
Decompile MapManager::GetMapMaxZ
Diffstat (limited to 'src/00_Core')
| -rw-r--r-- | src/00_Core/Map/MapManager.cpp | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/src/00_Core/Map/MapManager.cpp b/src/00_Core/Map/MapManager.cpp index 161b7301..7dd4f73f 100644 --- a/src/00_Core/Map/MapManager.cpp +++ b/src/00_Core/Map/MapManager.cpp @@ -79,10 +79,22 @@ ARM q20 MapManager::GetCourseMaxZ() { return (this->mCourse->mBounds).max.z; } -unk8 MapManager::func_ov00_020833c4() {} -unk8 MapManager::func_ov00_020833d0() {} -unk8 MapManager::func_ov00_020833dc() {} -unk8 MapManager::func_ov00_020833e8() {} +ARM q20 MapManager::GetMapMinX() { + return (this->mMap->mBounds).min.x; +} + +ARM q20 MapManager::GetMapMinZ() { + return (this->mMap->mBounds).min.z; +} + +ARM q20 MapManager::GetMapMaxX() { + return (this->mMap->mBounds).max.x; +} + +ARM q20 MapManager::GetMapMaxZ() { + return (this->mMap->mBounds).max.z; +} + unk8 MapManager::Get_MapData_Unk_d0() {} unk8 MapManager::Get_MapData_Unk_d8() {} unk8 MapManager::GetMapData_Unk_dc(Vec3p *param_2) {} |
