/* writer_png.h * * Declaration of the PNG writer. * * Eryn Wells */ #ifndef __WRITER_PNG_H #define __WRITER_PNG_H #include #include "scene.h" int write_scene_png(Scene *scene, FILE *file); #endif