16 lines
259 B
C
16 lines
259 B
C
#ifndef ARC_SDL_SPRITE_H_
|
|
#define ARC_SDL_SPRITE_H_
|
|
|
|
#ifdef ARC_SDL
|
|
|
|
#include <SDL.h>
|
|
#include "arc/graphics/spritesheet.h"
|
|
|
|
struct ARC_Sprite {
|
|
ARC_Spritesheet *spritesheet;
|
|
SDL_Rect *bounds;
|
|
};
|
|
|
|
#endif // ARC_SDL
|
|
|
|
#endif // ARC_SDL_SPRITE_H_
|