1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-05-19 14:47:46 +00:00
novus/armoury/src/cmpeditor.cpp

15 lines
440 B
C++
Raw Normal View History

// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: GPL-3.0-or-later
2023-07-06 17:37:04 -04:00
#include "cmpeditor.h"
2024-02-04 15:13:46 -05:00
#include <KLocalizedString>
2023-07-06 17:37:04 -04:00
2023-10-12 23:44:48 -04:00
CmpEditor::CmpEditor(GameData *data, QWidget *parent)
: CmpPart(data, parent)
2023-10-12 23:44:48 -04:00
{
2024-02-04 15:13:46 -05:00
setWindowTitle(i18nc("@title:window CMP is an abbreviation", "CMP Editor"));
2023-07-09 11:31:18 -04:00
load(physis_gamedata_extract_file(data, "chara/xls/charamake/human.cmp"));
2023-07-06 17:37:04 -04:00
}
#include "moc_cmpeditor.cpp"