mirror of
https://git.planet-casio.com/Fcalva/Copy3DEngine.git
synced 2024-12-28 20:43:44 +01:00
19 lines
478 B
C
19 lines
478 B
C
// Voir README.md pour license précise, par Fcalva 2023-2024 et est sous GPLv3
|
|
// See README.md for the exact licensing, by ...
|
|
|
|
#pragma once
|
|
|
|
#include <gint/display.h>
|
|
|
|
#include "utils.h"
|
|
#include "fixed.h"
|
|
#include "game.h"
|
|
|
|
//Adds the sprite reference to the internal sprite index
|
|
// /!\ This sprite reference may be used at every call of draw_sprites
|
|
void add_sprite(Sprite *sprite);
|
|
|
|
void clear_sprites();
|
|
|
|
void draw_sprites(bopti_image_t *tex_index[], RcActor *player);
|
|
|