ncm: GetContentAccessibilities, GetContentInfo*

This commit is contained in:
Michael Scire
2022-10-11 10:38:43 -07:00
committed by SciresM
parent 9929517a83
commit 05de5538d6
15 changed files with 231 additions and 51 deletions

View File

@@ -40,6 +40,10 @@ namespace ams::ncm {
return this->info.GetId();
}
constexpr fs::ContentAttributes GetContentAttributes() const {
return this->info.GetContentAttributes();
}
constexpr ContentType GetType() const {
return this->info.GetType();
}
@@ -72,6 +76,10 @@ namespace ams::ncm {
return this->info.GetSize();
}
constexpr fs::ContentAttributes GetContentAttributes() const {
return this->info.GetContentAttributes();
}
constexpr ContentType GetType() const {
return this->info.GetType();
}