mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-09-18 13:12:33 +02:00
11 lines
295 B
C++
11 lines
295 B
C++
#pragma once
|
|
#include "IIconRepository.h"
|
|
#include "RepositoryBase.h"
|
|
|
|
class IconRepository : public RepositoryBase, public IIconRepository
|
|
{
|
|
public:
|
|
void Initialize() override;
|
|
SharedPtr<BmpFileIconData> GetIconForFile(const FileInfo& fileInfo, const char* gameCode) const override;
|
|
};
|