mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-05-31 19:51:20 +00:00
22 lines
395 B
C++
22 lines
395 B
C++
#ifndef CSCANLOADER_H
|
|
#define CSCANLOADER_H
|
|
|
|
#include "../CScan.h"
|
|
#include "../EFormatVersion.h"
|
|
|
|
class CScanLoader
|
|
{
|
|
CScan *mpScan;
|
|
EGame mVersion;
|
|
|
|
CScanLoader();
|
|
CScan* LoadScanMP1(CInputStream& SCAN);
|
|
CScan* LoadScanMP2(CInputStream& SCAN);
|
|
void LoadParamsMP2(CInputStream& SCAN);
|
|
|
|
public:
|
|
static CScan* LoadSCAN(CInputStream& SCAN);
|
|
};
|
|
|
|
#endif // CSCANLOADER_H
|