mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-28 21:31:04 +00:00
21 lines
625 B
C
21 lines
625 B
C
|
// SONIC ROBO BLAST 2
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Copyright (C) 2012-2018 by Sally "TehRealSalt" Cochenour.
|
||
|
// Copyright (C) 2012-2016 by Sonic Team Junior.
|
||
|
//
|
||
|
// This program is free software distributed under the
|
||
|
// terms of the GNU General Public License, version 2.
|
||
|
// See the 'LICENSE' file for more details.
|
||
|
//-----------------------------------------------------------------------------
|
||
|
/// \file discord.h
|
||
|
/// \brief Discord Rich Presence handling
|
||
|
|
||
|
#ifdef HAVE_DISCORDRPC
|
||
|
|
||
|
#include "discord_rpc.h"
|
||
|
|
||
|
void DRPC_Init(void);
|
||
|
void DRPC_UpdatePresence(void);
|
||
|
|
||
|
#endif
|