mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
14 lines
241 B
C++
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){}
|
|
}; |