2023-08-06 08:48:11 -04:00
|
|
|
// 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"
|
|
|
|
|
2023-10-12 23:44:48 -04:00
|
|
|
CmpEditor::CmpEditor(GameData *data, QWidget *parent)
|
2023-12-09 15:24:54 -05:00
|
|
|
: CmpPart(data, parent)
|
2023-10-12 23:44:48 -04:00
|
|
|
{
|
2023-09-26 00:37:55 -04:00
|
|
|
setWindowTitle(QStringLiteral("CMP Editor"));
|
2023-07-09 11:31:18 -04:00
|
|
|
|
2023-10-13 15:20:01 -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"
|