Create dynamic STexture array

Hi

How can i create dynamic STexture array ?

Thanks.

Do you mean SDL_Texture ?

// CPP
std::vector<SDL_Texture*> texture;

// C
SDL_Texture *t[]
1 Like

Hi

Thanks . Its worked.