mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-29 05:41:02 +00:00
27 lines
737 B
C
27 lines
737 B
C
// SONIC ROBO BLAST 2 KART
|
|
//-----------------------------------------------------------------------------
|
|
// Copyright (C) 2018-2020 by Sally "TehRealSalt" Cochenour.
|
|
// Copyright (C) 2018-2020 by Kart Krew.
|
|
//
|
|
// 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
|
|
|
|
#ifndef __DISCORD__
|
|
#define __DISCORD__
|
|
|
|
#ifdef HAVE_DISCORDRPC
|
|
|
|
#include "discord_rpc.h"
|
|
|
|
extern consvar_t cv_discordrp;
|
|
|
|
void DRPC_Init(void);
|
|
void DRPC_UpdatePresence(void);
|
|
|
|
#endif // HAVE_DISCORDRPC
|
|
|
|
#endif // __DISCORD__
|