2024-07-01 06:00:33 +03:00

13 lines
217 B
C++

#include "Screen.hpp"
#include "../../graphics/core/Batch2D.hpp"
#include "../../engine.hpp"
Screen::Screen(Engine* engine)
: engine(engine),
batch(std::make_unique<Batch2D>(1024)) {
}
Screen::~Screen() {
}