mirror of
https://github.com/redstrate/Novus.git
synced 2025-05-19 14:47:46 +00:00
15 lines
No EOL
440 B
C++
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" |