mirror of
https://github.com/ssloy/tinyraycaster.git
synced 2025-01-17 05:08:22 +01:00
13 lines
130 B
C
13 lines
130 B
C
#ifndef SPRITE_H
|
|
#define SPRITE_H
|
|
|
|
#include <cstdlib>
|
|
|
|
struct Sprite {
|
|
float x, y;
|
|
size_t tex_id;
|
|
};
|
|
|
|
#endif // SPRITE_H
|
|
|