Files
dusklight/src/d/d_bg_s_chk.cpp
T
TakaRikka dfa8efa97b project cleanup (#2895)
* some wii OS fixes

* remove old dol2asm comments

* remove dol2asm.h

* remove function address comments

* normalize ATTRIBUTE_ALIGN usage

* DECL_WEAK macro

* fix gcc attribute weak macro

* wrap more mwcc specific things in ifdefs

* fixes

* fix revo sdk version flags

* fixes
2025-11-30 15:23:42 -07:00

21 lines
315 B
C++

/**
* d_bg_s_chk.cpp
* BG Collision Check Base
*/
#include "d/dolzel.h" // IWYU pragma: keep
#include "d/d_bg_s_chk.h"
dBgS_Chk::dBgS_Chk() {}
dBgS_Chk::~dBgS_Chk() {}
cBgS_PolyPassChk* dBgS_Chk::GetPolyPassChkInfo() {
return this;
}
cBgS_GrpPassChk* dBgS_Chk::GetGrpPassChkInfo() {
return this;
}