mirror of
https://github.com/redstrate/Novus.git
synced 2025-05-03 00:17:46 +00:00
14 lines
No EOL
381 B
C++
14 lines
No EOL
381 B
C++
// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#include "cmpeditor.h"
|
|
|
|
CmpEditor::CmpEditor(GameData *data, QWidget *parent)
|
|
: CmpPart(data, parent)
|
|
{
|
|
setWindowTitle(QStringLiteral("CMP Editor"));
|
|
|
|
load(physis_gamedata_extract_file(data, "chara/xls/charamake/human.cmp"));
|
|
}
|
|
|
|
#include "moc_cmpeditor.cpp" |