mirror of
https://github.com/zeldaret/tp
synced 2026-05-30 08:56:46 -04:00
c70d485d35
i previously had a bad habit of using double underscores in include guard macro names, which are implementation-reserved per the C++98 standard (see 17.4.3.1.2 Global names). Co-authored-by: Pheenoh <pheenoh@gmail.com>
26 lines
362 B
C++
26 lines
362 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
|