13 lines
176 B
C++
13 lines
176 B
C++
#pragma once
|
|
|
|
#include "assets.hpp"
|
|
|
|
#include <SDL3/SDL.h>
|
|
#include <cstdint>
|
|
#include <optional>
|
|
|
|
struct Sprite {
|
|
Texture const *texture;
|
|
uint16_t texture_atlas_index;
|
|
};
|