#ifndef SPRITE_HPP #define SPRITE_HPP #include typedef struct { SDL_Texture *texture; int width; int height; } Sprite; #endif