Files
tp/include/SSystem/SComponent/c_bg_w.h
T

22 lines
328 B
C++
Raw Normal View History

2021-03-28 22:49:05 +02:00
#ifndef C_BG_W_H
#define C_BG_W_H
#include "dolphin/types.h"
2021-04-08 22:18:35 +02:00
class cBgW_BgId {
public:
void Regist(int a1);
void Release();
unsigned int ChkUsed() const;
private:
unsigned short mId;
};
bool cBgW_CheckBGround(float a1);
bool cBgW_CheckBRoof(float a1);
bool cBgW_CheckBWall(float a1);
2021-03-28 22:49:05 +02:00
#endif /* C_BG_W_H */