bluecore/corona/src/Save.h

17 lines
250 B
C
Raw Permalink Normal View History

2008-01-16 12:45:17 +01:00
#ifndef CORONA_SAVE_H
#define CORONA_SAVE_H
#include "corona.h"
namespace corona {
#ifndef NO_PNG
bool SavePNG(File* file, Image* image); // SavePNG.cpp
#endif
bool SaveTGA(File* file, Image* image); // SaveTGA.cpp
}
#endif