mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
19 lines
597 B
C++
19 lines
597 B
C++
// RING RACERS
|
|
//-----------------------------------------------------------------------------
|
|
// Copyright (C) 2023 by James Robert Roman
|
|
//
|
|
// This program is free software distributed under the
|
|
// terms of the GNU General Public License, version 2.
|
|
// See the 'LICENSE' file for more details.
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef __M_AVRECORDER_HPP__
|
|
#define __M_AVRECORDER_HPP__
|
|
|
|
#include <memory> // shared_ptr
|
|
|
|
#include "media/avrecorder.hpp"
|
|
|
|
extern std::shared_ptr<srb2::media::AVRecorder> g_av_recorder;
|
|
|
|
#endif // __M_AVRECORDER_HPP__
|