mirror of
https://github.com/godotengine/godot
synced 2024-11-02 15:10:04 +00:00
15 lines
425 B
C++
15 lines
425 B
C++
#ifndef RESOURCE_SAVER_PNG_H
|
|
#define RESOURCE_SAVER_PNG_H
|
|
|
|
#include "io/resource_saver.h"
|
|
|
|
class ResourceSaverPNG : public ResourceFormatSaver {
|
|
public:
|
|
|
|
virtual Error save(const String &p_path,const RES& p_resource,uint32_t p_flags=0);
|
|
virtual bool recognize(const RES& p_resource) const;
|
|
virtual void get_recognized_extensions(const RES& p_resource,List<String> *p_extensions) const;
|
|
};
|
|
|
|
|
|
#endif // RESOURCE_SAVER_PNG_H
|