Files
HansTheGatherer/sprite.hpp
2025-05-25 22:36:33 +02:00

12 lines
156 B
C++

#pragma once
#include "assets.hpp"
#include <SDL3/SDL.h>
#include <cstdint>
struct Sprite {
Texture const *texture;
uint16_t texture_atlas_index;
};