mirror of
https://github.com/zetaPRIME/libstarlight.git
synced 2025-06-26 21:52:47 +00:00
21 lines
463 B
C++
21 lines
463 B
C++
#pragma once
|
|
#include "starlight/_global.h"
|
|
|
|
#include "starlight/gfx/DrawContext.h"
|
|
|
|
namespace starlight {
|
|
namespace gfx {
|
|
class DrawContextTopScreen : public DrawContext {
|
|
protected:
|
|
void Open() override;
|
|
void Close() override;
|
|
bool Prepare() override;
|
|
public:
|
|
DrawContextTopScreen() : DrawContext(VRect(0, 0, 320, 240)) { }
|
|
~DrawContextTopScreen() { }
|
|
|
|
};
|
|
}
|
|
}
|
|
|