mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00
11 lines
221 B
C++
11 lines
221 B
C++
#pragma once
|
|
|
|
#include "SaveImporterBase.h"
|
|
|
|
class CMaxSaveImporter : public CSaveImporterBase
|
|
{
|
|
public:
|
|
virtual ~CMaxSaveImporter() = default;
|
|
|
|
void Import(Framework::CStream&, const fs::path&) override;
|
|
};
|