mirror of
https://github.com/zeldaret/ss
synced 2026-05-23 23:05:20 -04:00
27 lines
519 B
C++
27 lines
519 B
C++
#ifndef EGG_POST_EFFECT_SIMPLE_H
|
|
#define EGG_POST_EFFECT_SIMPLE_H
|
|
|
|
#include "egg/gfx/eggPostEffectBase.h"
|
|
#include "rvl/GX/GXTypes.h"
|
|
namespace EGG {
|
|
|
|
class PostEffectSimple : public PostEffectBase {
|
|
public:
|
|
PostEffectSimple();
|
|
virtual void setMaterialInternal() override;
|
|
|
|
void setField0x38(s32 v) {
|
|
field_0x38 = v;
|
|
}
|
|
|
|
private:
|
|
/* 0x2C */ GXColor field_0x2C;
|
|
/* 0x30 */ f32 field_0x30;
|
|
/* 0x34 */ GXTevScale field_0x34;
|
|
/* 0x38 */ s32 field_0x38;
|
|
};
|
|
|
|
} // namespace EGG
|
|
|
|
#endif
|