mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-02-10 17:43:03 +00:00
20 lines
329 B
C++
20 lines
329 B
C++
#pragma once
|
|
|
|
#include "AssetList.h"
|
|
#include "Csv/CsvStream.h"
|
|
#include "Game/IGame.h"
|
|
|
|
#include <iostream>
|
|
|
|
class AssetListOutputStream
|
|
{
|
|
public:
|
|
AssetListOutputStream(std::ostream& stream, GameId game);
|
|
|
|
void WriteEntry(const AssetListEntry& entry);
|
|
|
|
private:
|
|
CsvOutputStream m_stream;
|
|
const IGame* m_game;
|
|
};
|