mirror of
https://git.planet-casio.com/Fcalva/Copy3DEngine.git
synced 2025-01-01 06:23:41 +01:00
19 lines
344 B
C
19 lines
344 B
C
// Voir README.md pour license précise, par Fcalva 2023-2024 et est sous GPLv3
|
|
|
|
#ifndef sprites__h
|
|
#define sprites__h
|
|
|
|
#include "utils.h"
|
|
#include "fixed.h"
|
|
#include "game.h"
|
|
|
|
#include <gint/display.h>
|
|
|
|
typedef struct {
|
|
V2d pos;
|
|
int tex;
|
|
} Sprite;
|
|
|
|
void project_sprite(bopti_image_t *tex_index[], Sprite *sprite, RcActor *player);
|
|
|
|
#endif
|