1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-24 00:23:53 +00:00
openmw/apps/opencs/view/render/instancemovemode.hpp

18 lines
300 B
C++
Raw Normal View History

2016-02-16 15:02:29 +00:00
#ifndef CSV_RENDER_INSTANCEMOVEMODE_H
#define CSV_RENDER_INSTANCEMOVEMODE_H
#include "../widget/modebutton.hpp"
namespace CSVRender
{
class InstanceMoveMode : public CSVWidget::ModeButton
{
2022-09-22 18:26:05 +00:00
Q_OBJECT
2016-02-16 15:02:29 +00:00
2022-09-22 18:26:05 +00:00
public:
InstanceMoveMode(QWidget* parent = nullptr);
2016-02-16 15:02:29 +00:00
};
}
#endif