Add ScreenEditor and Screen class

This commit is contained in:
Justin Scofield
2022-07-19 20:40:37 +00:00
parent 9406139e32
commit 77e230a014
4 changed files with 100 additions and 0 deletions

1
src/app/zelda3/screen.cc Normal file
View File

@@ -0,0 +1 @@
#include "screen.h"

21
src/app/zelda3/screen.h Normal file
View File

@@ -0,0 +1,21 @@
#ifndef YAZE_APP_ZELDA3_SCREEN_H
#define YAZE_APP_ZELDA3_SCREEN_H
#include "app/gfx/bitmap.h"
namespace yaze {
namespace app {
namespace zelda3 {
class Screen {
public:
Screen() = default;
private:
gfx::Bitmap screen;
uchar *data = nullptr;
};
} // namespace zelda3
} // namespace app
} // namespace yaze