dolphin/Source/Core/UICommon/ResourcePack/Manager.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
638 B
C
Raw Normal View History

2018-11-17 15:36:28 +00:00
// Copyright 2018 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2018-11-17 15:36:28 +00:00
#pragma once
#include <string>
#include <vector>
#include "UICommon/ResourcePack/ResourcePack.h"
namespace ResourcePack
{
bool Init();
ResourcePack* Add(const std::string& path, int offset = -1);
2018-11-17 15:36:28 +00:00
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