Added some helpers to camera and range lib to replace the standard ranges library due to some issues clangd has with the gcc implementation

This commit is contained in:
2021-12-12 03:48:56 -05:00
parent a328246a1e
commit cd37945791
8 changed files with 63 additions and 27 deletions

View File

@@ -3,13 +3,15 @@
//
#include "../engine/game/game.hpp"
#include "../engine/rendering/renderer.hpp"
#include "camera.hpp"
#include "../engine/utility/camera.hpp"
#include "../engine/utility/grid2d.hpp"
#include <vector>
#include <range/v3/range.hpp>
#include <range/v3/view.hpp>
#ifndef RLA_IIPP_VISUALIZER_HPP
#define RLA_IIPP_VISUALIZER_HPP
#define MAP_SIZE_W 10
#define MAP_SIZE_H 10
#define MAP_SIZE_W 20
#define MAP_SIZE_H 20
#define TILE_WIDTH 48
#define TILE_HEIGHT 48
#define WALL_CHAR '#'