他人の空似自作物置場

touhouSE_th145BGMOnly.zip/touhouSE_src/image_base.h


namespace TouhouSE {

template<class T>
class ImageBase {
public:
	static boost::shared_ptr<typename T> Open(std::istream &in, const unsigned long long int file_size);
	bool CreateRGBAArray(std::vector<Color> &result) const;
	unsigned int GetWidth() const;
	unsigned int GetHeight() const;
};

} // TouhouSE