JSystem Font classes, SComponent cBgW (#14)

* 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>
This commit is contained in:
notyourav
2020-12-03 17:58:53 -08:00
committed by GitHub
parent e27ed1c55d
commit 294858f751
35 changed files with 1412 additions and 1527 deletions
+25
View File
@@ -0,0 +1,25 @@
#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