libstarlight/libstarlight/source/starlight/gfx/DrawContextTopScreen.h
2017-01-16 20:40:45 -05:00

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() { }
};
}
}