mirror of
https://github.com/encounter/ogws.git
synced 2026-03-30 11:33:37 -07:00
24 lines
519 B
C++
24 lines
519 B
C++
#ifndef EGG_GFX_POST_EFFECT_SIMPLE_H
|
|
#define EGG_GFX_POST_EFFECT_SIMPLE_H
|
|
#include "types_egg.h"
|
|
#include "eggPostEffectBase.h"
|
|
|
|
namespace EGG
|
|
{
|
|
class PostEffectSimple : public PostEffectBase
|
|
{
|
|
public:
|
|
PostEffectSimple();
|
|
virtual ~PostEffectSimple() {} // at 0x8
|
|
virtual void reset(); // at 0x14
|
|
virtual void preDraw(); // at 0x18
|
|
|
|
private:
|
|
GXColor mColor; // at 0x20
|
|
f32 FLOAT_0x24;
|
|
char UNK_0x28[0x4];
|
|
UNKWORD WORD_0x2C;
|
|
};
|
|
}
|
|
|
|
#endif |