SDL2/SDL.h -> SDL.h

This commit is contained in:
2025-01-13 00:15:12 +01:00
parent 676f27c094
commit dde1be55d3
7 changed files with 7 additions and 7 deletions

View File

@@ -1,6 +1,6 @@
#include "errors.h"
#include <SDL2/SDL.h>
#include <SDL.h>
#include <stdarg.h>
#include <stdio.h>

View File

@@ -1,5 +1,5 @@
#pragma once
#include <SDL2/SDL.h>
#include <SDL.h>
// stores the data used in the game
typedef struct {

View File

@@ -1,6 +1,6 @@
#include "main.h"
#include <SDL2/SDL.h>
#include <SDL.h>
#include <stdbool.h>
#include <stdio.h>
#include <string.h>

View File

@@ -1,6 +1,6 @@
#include "audio.h"
#include <SDL2/SDL.h>
#include <SDL.h>
#include "../errors.h"

View File

@@ -1,5 +1,5 @@
#pragma once
#include <SDL2/SDL.h>
#include <SDL.h>
typedef struct {
uint32_t length;

View File

@@ -1,7 +1,7 @@
// initializes the window and renderer
#include "renderer.h"
#include <SDL2/SDL.h>
#include <SDL.h>
#include <stdio.h>
#include "../errors.h"

View File

@@ -1,5 +1,5 @@
#pragma once
#include <SDL2/SDL.h>
#include <SDL.h>
typedef struct {
SDL_Window* window;