mirror of
https://github.com/libretro/dolphin
synced 2024-11-05 04:53:51 -05:00
26 lines
652 B
C++
26 lines
652 B
C++
// Copyright 2018 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "UICommon/ResourcePack/ResourcePack.h"
|
|
|
|
namespace ResourcePack
|
|
{
|
|
bool Init();
|
|
|
|
bool Add(const std::string& path, int offset = -1);
|
|
bool Remove(ResourcePack& pack);
|
|
void SetInstalled(const ResourcePack& pack, bool installed);
|
|
bool IsInstalled(const ResourcePack& pack);
|
|
|
|
std::vector<ResourcePack>& GetPacks();
|
|
|
|
std::vector<ResourcePack*> GetHigherPriorityPacks(ResourcePack& pack);
|
|
std::vector<ResourcePack*> GetLowerPriorityPacks(ResourcePack& pack);
|
|
} // namespace ResourcePack
|