mirror of
https://github.com/zeldaret/tp
synced 2026-05-26 15:46:02 -04:00
9649319ec4
* Reorganize files into libs/{dolphin,JSystem,PowerPC_EABI_Support,revolution,TRK_MINNOW_DOLPHIN}
* Update configure.py and project.py for new libs structure
* Refactor `#include <dolphin/x.h>` -> `<x.h>`
* Remove `__REVOLUTION_SDK__` forwards from dolphin
* Fix dolphin/ references in revolution
* Wrap `#include <dolphin.h>` in `!__REVOLUTION_SDK__`
* Always build TRK against dolphin headers
* Resolve revolution SDK header resolution issues
31 lines
723 B
C++
31 lines
723 B
C++
#ifndef C_BG_S_POLY_INFO_H
|
|
#define C_BG_S_POLY_INFO_H
|
|
|
|
#include <types.h>
|
|
#include "f_pc/f_pc_manager.h"
|
|
|
|
class cBgS_PolyInfo {
|
|
private:
|
|
/* 0x00 */ u16 mPolyIndex;
|
|
/* 0x02 */ u16 mBgIndex;
|
|
/* 0x04 */ void* unk_0x04;
|
|
/* 0x08 */ fpc_ProcID mActorId;
|
|
|
|
public:
|
|
cBgS_PolyInfo();
|
|
bool ChkSetInfo() const;
|
|
void ClearPi();
|
|
void SetPolyInfo(const cBgS_PolyInfo&);
|
|
void SetActorInfo(int, void*, fpc_ProcID);
|
|
bool ChkSafe(const void*, fpc_ProcID) const;
|
|
void SetPolyIndex(int);
|
|
bool ChkBgIndex() const;
|
|
|
|
virtual ~cBgS_PolyInfo();
|
|
|
|
int GetPolyIndex() const { return mPolyIndex; }
|
|
int GetBgIndex() const { return mBgIndex; }
|
|
}; // Size: 0x10
|
|
|
|
#endif /* C_BG_S_POLY_INFO_H */
|