Files
ss/include/egg/gfx/eggDrawPathBloom.h
T
2025-03-23 11:56:25 -04:00

21 lines
309 B
C++

#ifndef EGG_DRAW_PATH_BLOOM_H
#define EGG_DRAW_PATH_BLOOM_H
#include "egg/gfx/eggDrawPathBase.h"
namespace EGG {
class DrawPathBloom : public DrawPathBase {
public:
virtual ~DrawPathBloom();
virtual u16 getNumStep() const override {
return 3;
}
private:
};
} // namespace EGG
#endif