1234567891011121314151617181920212223 |
- #ifndef TRANSFORM_H_INCLUDED
- #define TRANSFORM_H_INCLUDED
- #include <iostream>
- #include <string>
- #include <SDL/SDL.h>
- #include <SDL/SDL_ttf.h>
- SDL_Surface* transform(std::string const chaine, int const taille);
- SDL_Surface* transform(std::string const chaine);
- #endif
|