mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-08 09:40:23 +01:00
16 lines
233 B
C++
16 lines
233 B
C++
#pragma once
|
|
|
|
#include <array>
|
|
#include <string>
|
|
|
|
namespace countries
|
|
{
|
|
struct country_code
|
|
{
|
|
std::string_view name;
|
|
std::string_view ccode;
|
|
};
|
|
extern const std::array<country_code, 72> g_countries;
|
|
} // namespace countries
|
|
|