texture.hpp 200 B

123456789
  1. #ifndef __TEXTURE_HPP_
  2. #define __TEXTURE_HPP_
  3. #include "image.hpp"
  4. void texture_map(image *screen, image *tx, short *points);
  5. void clear_texture_map(image *screen, image *tx, short *points);
  6. #endif