mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 15:01:53 -04:00
294858f751
* c_bg_w.cpp OK * JUTFont and JUTResFont partially implemented Co-authored-by: notyouraveragehooman <65437533+notyouraveragehooman@users.noreply.github.com> Co-authored-by: Pheenoh <pheenoh@gmail.com>
26 lines
360 B
C++
26 lines
360 B
C++
#ifndef SCOMPONENT_C_BG_W_H
|
|
#define SCOMPONENT_C_BG_W_H
|
|
|
|
#include "global.h"
|
|
|
|
class cBgW_BgId {
|
|
public:
|
|
void Regist(int a1);
|
|
void Release();
|
|
|
|
unsigned int ChkUsed() const;
|
|
|
|
private:
|
|
unsigned short mId;
|
|
};
|
|
|
|
extern "C" {
|
|
|
|
bool cBgW_CheckBGround(float a1);
|
|
bool cBgW_CheckBRoof(float a1);
|
|
bool cBgW_CheckBWall(float a1);
|
|
|
|
} // extern "C"
|
|
|
|
#endif
|