2020-12-28 15:04:24 +00:00
|
|
|
#pragma once
|
|
|
|
|
2021-05-24 09:22:01 +01:00
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
class Registry;
|
|
|
|
|
2021-02-25 16:24:52 +00:00
|
|
|
namespace ra2
|
|
|
|
{
|
|
|
|
|
|
|
|
void SetupRetroVariables();
|
2021-05-24 09:22:01 +01:00
|
|
|
std::shared_ptr<Registry> CreateRetroRegistry();
|
2021-02-25 16:24:52 +00:00
|
|
|
|
|
|
|
}
|