add sprite

This commit is contained in:
2025-01-08 22:01:41 -06:00
parent 293eb509da
commit 0153cfbb68
2 changed files with 11 additions and 0 deletions

1
source/sprite.c Normal file
View File

@@ -0,0 +1 @@
#include "sprite.h"

10
source/sprite.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef SPRITE_H
#define SPRITE_H
#include "HandmadeMath.h"
typedef struct {
HMM_Mat2 affine;
} sprite;
#endif