From 1fc73f11b55c8245ba0ef5912bddfff5b58c1291 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 10 Nov 2021 02:50:29 +0100 Subject: [PATCH] Add missing netplay_protocol.h --- network/netplay/netplay_protocol.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 network/netplay/netplay_protocol.h diff --git a/network/netplay/netplay_protocol.h b/network/netplay/netplay_protocol.h new file mode 100644 index 0000000000..4410cdd713 --- /dev/null +++ b/network/netplay/netplay_protocol.h @@ -0,0 +1,23 @@ +/* RetroArch - A frontend for libretro. + * Copyright (C) 2010-2014 - Hans-Kristian Arntzen + * Copyright (C) 2011-2017 - Daniel De Matteis + * Copyright (C) 2016-2017 - Gregor Richards + * + * RetroArch is free software: you can redistribute it and/or modify it under the terms + * of the GNU General Public License as published by the Free Software Found- + * ation, either version 3 of the License, or (at your option) any later version. + * + * RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; + * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + * PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along with RetroArch. + * If not, see . + */ + +#ifndef __RARCH_NETPLAY_PROTOCOL_H +#define __RARCH_NETPLAY_PROTOCOL_H + +#define NETPLAY_PROTOCOL_VERSION 5 + +#endif