Change raylib include form "" to <>

This commit is contained in:
Nikola Petrov 2024-06-07 23:42:18 +02:00
parent 10aa689874
commit dbf97df86a
11 changed files with 15 additions and 14 deletions

View File

@ -1,4 +1,4 @@
#include "raylib.h"
#include <raylib.h>
Color ColorLerp(Color c1, Color c2, float amount);
Vector2 CalculateVector(float rotation, float offSet, float len);

View File

@ -1,5 +1,5 @@
#include <vector>
#include "raylib.h"
#include <raylib.h>
#include "values/RandBuffer.hpp"
struct Moon

View File

@ -1,4 +1,4 @@
#include "raylib.h"
#include <raylib.h>
class BackGroundColors
{

View File

@ -1,4 +1,4 @@
#include "raylib.h"
#include <raylib.h>
#include "BackGround.hpp"
#include "Tree.hpp"

View File

@ -1,7 +1,7 @@
#include <cstdint>
#include <vector>
#include <list>
#include "raylib.h"
#include <raylib.h>
#define MAX_DEPTH 11

View File

@ -6,6 +6,7 @@
class Buffer
{
public:
uint8_t *buffer = nullptr;
size_t taken = 0;

View File

@ -4,8 +4,8 @@
#include "App.hpp"
#include "Math.hpp"
#include "raylib.h"
#include "raymath.h"
#include <raylib.h>
#include <raymath.h>
void App::init(int screenWidth, int screenHeight)
{

View File

@ -1,6 +1,6 @@
#include <cmath>
#include "Math.hpp"
#include "raymath.h"
#include <raymath.h>
Color ColorLerp(Color c1, Color c2, float amount)
{

View File

@ -2,9 +2,9 @@
#include "canvas/BackGroundColors.hpp"
#include "Math.hpp"
#include "raylib.h"
#include "rlgl.h"
#include "raymath.h"
#include <raylib.h>
#include <rlgl.h>
#include <raymath.h>
// Public
void BackGround::init(int size)

View File

@ -1,6 +1,6 @@
#include <cmath>
#include "raylib.h"
#include "raymath.h"
#include <raylib.h>
#include <raymath.h>
#include "canvas/Tree.hpp"
#include "Math.hpp"

View File

@ -1,4 +1,4 @@
#include "raylib.h"
#include <raylib.h>
#include "App.hpp"
#if defined(PLATFORM_WEB)