1
0
mirror of https://github.com/ssloy/tinyraycaster.git synced 2025-01-17 05:08:22 +01:00
tinyraycaster/sprite.h
2019-02-10 08:07:41 +01:00

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