summaryrefslogtreecommitdiff
path: root/Week1-Pacman/src/animation.h
diff options
context:
space:
mode:
authorBoredGuy <osome3717@gmail.com>2025-01-03 11:38:13 +0300
committerBoredGuy <osome3717@gmail.com>2025-01-03 11:38:13 +0300
commit5f7e0d8cf88d0adb9739e2cc7e26ba26243975f8 (patch)
tree099937e59239471f0f611602b5b7788dfde91814 /Week1-Pacman/src/animation.h
parent1d1554652888fa4f0cd12a51fda8d9bd54dbcee6 (diff)
Minor optimization
Animations can now share a single texture
Diffstat (limited to 'Week1-Pacman/src/animation.h')
-rw-r--r--Week1-Pacman/src/animation.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Week1-Pacman/src/animation.h b/Week1-Pacman/src/animation.h
index 390e3f5..af55e14 100644
--- a/Week1-Pacman/src/animation.h
+++ b/Week1-Pacman/src/animation.h
@@ -6,6 +6,7 @@
#include "demo.h"
struct animation_init {
+ SDL_Texture* spritesheet_texture;
SDL_Renderer* ren;
const char* spritesheet;
int initial_frame_count;