Shirag 0.1.0
Loading...
Searching...
No Matches
raytrace.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <raylib.h>
4#include <vector>
5
6namespace Shirag::Raytrace {
7
8 std::vector<Vector2> raytrace(Vector2 StartPosition, int Segments, std::vector<Rectangle>& Obstacles, int Range);
9
10}
Definition raytrace.hpp:6
std::vector< Vector2 > raytrace(Vector2 StartPosition, int Segments, std::vector< Rectangle > &Obstacles, int Range)
Definition raytrace.cpp:5