2022-11-03 21:29:08 -06:00
|
|
|
#ifndef ARC_SDL_SPRITESHEET_H_
|
|
|
|
|
#define ARC_SDL_SPRITESHEET_H_
|
|
|
|
|
|
|
|
|
|
#ifdef ARC_SDL
|
|
|
|
|
#include "arc/graphics/spritesheet.h"
|
2023-03-11 01:21:36 -07:00
|
|
|
#include <SDL.h>
|
2022-11-03 21:29:08 -06:00
|
|
|
|
|
|
|
|
struct ARC_Spritesheet {
|
|
|
|
|
SDL_Texture *texture;
|
|
|
|
|
uint32_t *size;
|
|
|
|
|
};
|
|
|
|
|
|
2023-03-10 17:34:22 -07:00
|
|
|
#endif // !ARC_SDL
|
2022-11-03 21:29:08 -06:00
|
|
|
|
2023-03-10 17:34:22 -07:00
|
|
|
#endif // !ARC_SDL_SPRITESHEET_H_
|