mirror of
https://github.com/zeldaret/ss
synced 2026-05-25 23:35:13 -04:00
24 lines
334 B
C++
24 lines
334 B
C++
#ifndef EGG_SCREEN_EFFECT_BASE_H
|
|
#define EGG_SCREEN_EFFECT_BASE_H
|
|
|
|
#include "common.h"
|
|
#include "egg/gfx/eggScreen.h"
|
|
|
|
namespace EGG {
|
|
|
|
class ScreenEffectBase {
|
|
protected:
|
|
u8 mFlag;
|
|
|
|
public:
|
|
ScreenEffectBase();
|
|
virtual ~ScreenEffectBase() {} // at 0x8
|
|
|
|
protected:
|
|
static Screen sScreen;
|
|
};
|
|
|
|
} // namespace EGG
|
|
|
|
#endif
|