mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-06-29 18:09:59 +03:00
8 lines
222 B
C++
8 lines
222 B
C++
#include "FtbModpackListItem.h"
|
|
|
|
FtbModpackListItem::FtbModpackListItem(QListWidget *list, FtbModpack modpack) : QListWidgetItem(list), modpack(modpack) {
|
|
}
|
|
|
|
FtbModpack FtbModpackListItem::getModpack(){
|
|
return modpack;
|
|
}
|