all repos — mgba @ f6755a6e1b7b0cf2b944cd8ca842746f11d6bf82

mGBA Game Boy Advance Emulator

src/platform/qt/DiscordCoordinator.h (view raw)

 1/* Copyright (c) 2013-2019 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 <memory>
 9
10namespace QGBA {
11
12class CoreController;
13
14namespace DiscordCoordinator {
15
16void init();
17void deinit();
18
19void gameStarted(std::shared_ptr<CoreController>);
20void gameStopped();
21
22}
23
24}