mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-05 00:00:42 +01:00
16 lines
238 B
C++
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
|
|
|