16 lines
265 B
C
16 lines
265 B
C
#ifndef ARC_SDL_SPRITESHEET_H_
|
|
#define ARC_SDL_SPRITESHEET_H_
|
|
|
|
#ifdef ARC_SDL
|
|
|
|
#include <SDL.h>
|
|
#include "arc/graphics/spritesheet.h"
|
|
|
|
struct ARC_Spritesheet {
|
|
SDL_Texture *texture;
|
|
uint32_t *size;
|
|
};
|
|
|
|
#endif // ARC_SDL
|
|
|
|
#endif // ARC_SDL_SPRITESHEET_H_
|