rpcsx/rpcs3/Emu/NP/rpcn_countries.h
2025-02-11 20:38:35 +01:00

16 lines
238 B
C++

#pragma once
#include <array>
#include <string_view>
namespace countries
{
struct country_code
{
std::string_view name;
std::string_view ccode;
};
extern const std::array<country_code, 72> g_countries;
} // namespace countries