2024-08-10 01:37:48 +03:00

13 lines
205 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() {
}