This commit is contained in:
2026-05-28 15:20:32 +03:00
parent d596438a94
commit 4d881b1087
4 changed files with 18 additions and 21 deletions
+2 -8
View File
@@ -1,14 +1,8 @@
#include "line.h"
Line::Line() {
this->line.clear();
this->line.resize(0);
}
Line::Line() = default;
Line::Line(size_t length) {
this->line.clear();
this->line.resize(length);
}
Line::Line(size_t length) : line(length) {}
void Line::process() {
std::vector<Tile> result;