mirror of
https://github.com/pound-emu/pound.git
synced 2025-06-22 22:48:09 -04:00
16 lines
398 B
C++
16 lines
398 B
C++
// SPDX-FileCopyrightText: Copyright 2019 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include "core/file_sys/vfs/vfs_types.h"
|
|
|
|
namespace FileSys::SystemArchive {
|
|
|
|
VirtualDir FontNintendoExtension();
|
|
VirtualDir FontStandard();
|
|
VirtualDir FontKorean();
|
|
VirtualDir FontChineseTraditional();
|
|
VirtualDir FontChineseSimple();
|
|
|
|
} // namespace FileSys::SystemArchive
|