1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-06-11 15:37:46 +00:00
novus/apps/armoury/src/cmpeditor.cpp
Joshua Goins b6cc54405c Move applications to their own folder
To try to cut down the amount of top-level folders
2024-05-10 16:44:45 -04:00

15 lines
No EOL
440 B
C++

// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: GPL-3.0-or-later
#include "cmpeditor.h"
#include <KLocalizedString>
CmpEditor::CmpEditor(GameData *data, QWidget *parent)
: CmpPart(data, parent)
{
setWindowTitle(i18nc("@title:window CMP is an abbreviation", "CMP Editor"));
load(physis_gamedata_extract_file(data, "chara/xls/charamake/human.cmp"));
}
#include "moc_cmpeditor.cpp"