Admiral H. Curtiss 0a517ebdbd
Core: Pass Netplay SRAM through boot process.
This removes the Netplay classes touching emulated hardware structures before emulation even starts.
2022-09-19 21:47:12 +02:00

15 lines
255 B
C++

// Copyright 2008 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
class PointerWrap;
struct Sram;
namespace HW
{
void Init(const Sram* override_sram);
void Shutdown();
void DoState(PointerWrap& p);
} // namespace HW