updated cmake

This commit is contained in:
herbglitch 2023-03-11 01:21:36 -07:00
parent b65ce85405
commit 0f03d88b26
8 changed files with 20 additions and 20 deletions

View file

@ -2,10 +2,9 @@
#define ARC_SDL_RENDERER_H_
#ifdef ARC_SDL
#include <SDL.h>
#include "arc/graphics/renderer.h"
#include "arc/graphics/window.h"
#include <SDL.h>
typedef SDL_Renderer ARC_RendererType;

View file

@ -2,9 +2,8 @@
#define ARC_SDL_SPRITE_H_
#ifdef ARC_SDL
#include <SDL.h>
#include "arc/graphics/sprite.h"
#include <SDL.h>
struct ARC_Sprite {
ARC_Spritesheet *spritesheet;

View file

@ -2,9 +2,8 @@
#define ARC_SDL_SPRITESHEET_H_
#ifdef ARC_SDL
#include <SDL.h>
#include "arc/graphics/spritesheet.h"
#include <SDL.h>
struct ARC_Spritesheet {
SDL_Texture *texture;

View file

@ -2,9 +2,8 @@
#define ARC_SDL_WINDOW_H_
#ifdef ARC_SDL
#include <SDL.h>
#include "arc/graphics/window.h"
#include <SDL.h>
typedef SDL_Window ARC_WindowType;

View file

@ -2,8 +2,8 @@
#define ARC_SDL_KEYBOARD_H_
#ifdef ARC_SDL
#include <SDL.h>
#include "arc/input/keyboard.h"
#include <SDL.h>
struct ARC_Keyboard {
SDL_Event *event;