Files
2025-09-18 17:55:52 -04:00

14 lines
241 B
C++

/**
* PluginAction.h
* Copyright (c) 2013 ROBLOX Corp. All Rights Reserved.
*/
#pragma once
#include <QAction>
class PluginAction : public QAction
{
public:
PluginAction(const QString& string, QObject* obj) : QAction(string, obj){}
};