mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 00:35:47 +00:00
Merge pull request #1364 from lioncash/content
file-sys: Default heavy-weight class destructors in the cpp file
This commit is contained in:
commit
9fba7634a5
25 changed files with 45 additions and 1 deletions
|
@ -28,6 +28,8 @@ NACP::NACP(VirtualFile file) : raw(std::make_unique<RawNACP>()) {
|
|||
file->ReadObject(raw.get());
|
||||
}
|
||||
|
||||
NACP::~NACP() = default;
|
||||
|
||||
const LanguageEntry& NACP::GetLanguageEntry(Language language) const {
|
||||
if (language != Language::Default) {
|
||||
return raw->language_entries.at(static_cast<u8>(language));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue