19 lines
289 B
C++
19 lines
289 B
C++
#ifndef ZONEFILE_COD4_PS3_H
|
|
#define ZONEFILE_COD4_PS3_H
|
|
|
|
#include <QIcon>
|
|
|
|
#include "zonefile.h"
|
|
|
|
class ZoneFile_COD4_PS3 : public ZoneFile
|
|
{
|
|
public:
|
|
ZoneFile_COD4_PS3();
|
|
~ZoneFile_COD4_PS3();
|
|
|
|
bool Load(const QByteArray aFileData) override;
|
|
|
|
};
|
|
|
|
#endif // ZONEFILE_COD4_PS3_H
|