mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-07 01:00:06 +01:00
12 lines
272 B
C++
12 lines
272 B
C++
#pragma once
|
|
|
|
#include "table_item_delegate.h"
|
|
|
|
class game_list_delegate : public table_item_delegate
|
|
{
|
|
public:
|
|
explicit game_list_delegate(QObject* parent);
|
|
|
|
void paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const override;
|
|
};
|