2024-05-20 03:46:09 -06:00
|
|
|
#ifndef ARC_SDL_SPRITESHEET_H_
|
|
|
|
|
#define ARC_SDL_SPRITESHEET_H_
|
|
|
|
|
|
|
|
|
|
#include "arc/graphics/spritesheet.h"
|
|
|
|
|
#include <SDL.h>
|
|
|
|
|
|
|
|
|
|
struct ARC_Spritesheet {
|
|
|
|
|
SDL_Texture *texture;
|
2025-03-19 05:13:11 -06:00
|
|
|
uint32_t size;
|
2024-05-20 03:46:09 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // !ARC_SDL_SPRITESHEET_H_
|