mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-27 15:42:42 -04:00
dfa8efa97b
* 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
21 lines
315 B
C++
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;
|
|
}
|