Files
FC1/RenderDll/Common/Textures/Image/PcxImage.h
romkazvo 34d6c5d489 123
2023-08-07 19:29:24 +08:00

26 lines
339 B
C++

#ifndef PCXIMAGE_H
#define PCXIMAGE_H
/**
* An ImageFile subclass for reading PCX files.
*/
class CImagePcxFile : public CImageFile
{
///
friend class CImageFile; // For constructor
private:
/// Read the PCX file from the buffer.
CImagePcxFile (byte* buf, long size);
public:
///
virtual ~CImagePcxFile ();
};
#endif