started pulling in lua stuff, fixed an issue with camera range

This commit is contained in:
2021-12-12 17:17:09 -05:00
parent d5fd89e228
commit 8213dd8cb3
9 changed files with 55 additions and 12 deletions

View File

@@ -28,7 +28,7 @@ public:
T get(int x, int y) {
return grid[y][x];
}
auto get_range() {
ranges::any_view<Point> get_range() {
int height = get_height();
int width = get_width();
return ranges::views::iota(0, height) | ranges::views::transform([height, width](int y) {