src/platform/qt/GameBoy.h (view raw)
1/* Copyright (c) 2013-2020 Jeffrey Pfau
2 *
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6#pragma once
7
8#include <QList>
9#include <QString>
10
11#ifdef M_CORE_GB
12#include <mgba/gb/interface.h>
13
14namespace QGBA {
15
16namespace GameBoy {
17 QList<GBModel> modelList();
18 QString modelName(GBModel);
19
20 QList<GBMemoryBankControllerType> mbcList();
21 QString mbcName(GBMemoryBankControllerType);
22}
23
24}
25#endif