mirror of
https://github.com/zeldaret/tp
synced 2026-06-02 10:10:35 -04:00
9eea9289b1
* Fix JUT_ASSERT to be a nested define * Switch names that appear in asserts to be constants instead of defines * Replace `0` in asserts with `NULL` or `FALSE` * Fix fpclassify * Fix ARRAY_SIZE * Use G_CM3D_F_INF * More fixes for fpclassify * Remove FLOAT_LABEL * Remove incorrect FLAG_ON macro * Remove UNK_BSS macro * Silence clangd unused header warning for PCH
21 lines
526 B
C++
21 lines
526 B
C++
/**
|
|
* d_bg_s_sph_chk.cpp
|
|
* BG Collision Sphere Check
|
|
*/
|
|
|
|
#include "d/dolzel.h" // IWYU pragma: keep
|
|
|
|
#include "d/d_bg_s_sph_chk.h"
|
|
|
|
/* 80078A14-80078AC0 073354 00AC+00 0/0 1/1 1/1 .text __ct__11dBgS_SphChkFv */
|
|
dBgS_SphChk::dBgS_SphChk() {
|
|
SetPolyPassChk(GetPolyPassChkInfo());
|
|
SetGrpPassChk(GetGrpPassChkInfo());
|
|
SetActorPid(0xFFFFFFFF);
|
|
ClearPi();
|
|
mCallback = NULL;
|
|
}
|
|
|
|
/* 80078AC0-80078B70 073400 00B0+00 5/4 2/2 0/0 .text __dt__11dBgS_SphChkFv */
|
|
dBgS_SphChk::~dBgS_SphChk() {}
|