AppleWin/source/frontends/libretro/retroregistry.h
Andrea Odetti bde3eb92b0 Improve symmetry of Constructor/Destructor functions.
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2021-05-24 09:22:01 +01:00

13 lines
151 B
C++

#pragma once
#include <memory>
class Registry;
namespace ra2
{
void SetupRetroVariables();
std::shared_ptr<Registry> CreateRetroRegistry();
}