mirror of
https://github.com/projectPiki/pikmin2.git
synced 2024-11-27 15:20:37 +00:00
30 lines
445 B
C
30 lines
445 B
C
#ifndef _FOGMGR_H
|
|
#define _FOGMGR_H
|
|
|
|
#include "CNode.h"
|
|
#include "Color4.h"
|
|
#include "Dolphin/gx.h"
|
|
|
|
struct Graphics;
|
|
|
|
struct FogMgr : public CNode {
|
|
FogMgr();
|
|
|
|
virtual ~FogMgr() { } // _08 (weak)
|
|
|
|
void off(Graphics&);
|
|
void set(Graphics&);
|
|
|
|
void getColor(Color4&);
|
|
void setColor(Color4&);
|
|
|
|
// _00 = VTBL
|
|
// _00-_18 = CNode
|
|
GXFogType mType; // _18
|
|
f32 mNearZ; // _1C
|
|
f32 mFarZ; // _20
|
|
u_color mColor; // _24
|
|
};
|
|
|
|
#endif
|