Files
dusklight/include/SComponent/c_bg_w.h
T
lepelog ce8319486b Fix symbol names (#118)
* checkpoint

* checkpoint

* rename f_pc

* checkpoint

* small symbol rename and fix some fpc symbols

* remove unneeded entries from ldscript

* simplify ok check, update docker container

Co-authored-by: Pheenoh <pheenoh@gmail.com>
2021-03-15 02:12:44 -04:00

28 lines
444 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;
};
bool cBgW_CheckBGround(float a1);
bool cBgW_CheckBRoof(float a1);
bool cBgW_CheckBWall(float a1);
extern "C" {
void cBgW_CheckBGround__Ff(void);
void cBgW_CheckBRoof__Ff(void);
void cBgW_CheckBWall__Ff(void);
}
#endif