Change raylib include form "" to <>
This commit is contained in:
parent
10aa689874
commit
dbf97df86a
@ -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);
|
||||
|
@ -1,5 +1,5 @@
|
||||
#include <vector>
|
||||
#include "raylib.h"
|
||||
#include <raylib.h>
|
||||
#include "values/RandBuffer.hpp"
|
||||
|
||||
struct Moon
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "raylib.h"
|
||||
#include <raylib.h>
|
||||
|
||||
class BackGroundColors
|
||||
{
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "raylib.h"
|
||||
#include <raylib.h>
|
||||
#include "BackGround.hpp"
|
||||
#include "Tree.hpp"
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#include <cstdint>
|
||||
#include <vector>
|
||||
#include <list>
|
||||
#include "raylib.h"
|
||||
#include <raylib.h>
|
||||
|
||||
#define MAX_DEPTH 11
|
||||
|
||||
|
@ -6,6 +6,7 @@
|
||||
|
||||
class Buffer
|
||||
{
|
||||
|
||||
public:
|
||||
uint8_t *buffer = nullptr;
|
||||
size_t taken = 0;
|
||||
|
@ -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)
|
||||
{
|
||||
|
@ -1,6 +1,6 @@
|
||||
#include <cmath>
|
||||
#include "Math.hpp"
|
||||
#include "raymath.h"
|
||||
#include <raymath.h>
|
||||
|
||||
Color ColorLerp(Color c1, Color c2, float amount)
|
||||
{
|
||||
|
@ -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)
|
||||
|
@ -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"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "raylib.h"
|
||||
#include <raylib.h>
|
||||
#include "App.hpp"
|
||||
|
||||
#if defined(PLATFORM_WEB)
|
||||
|
Loading…
x
Reference in New Issue
Block a user