mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 03:39:14 +00:00
19 lines
308 B
C++
19 lines
308 B
C++
#ifndef CSV_RENDER_INSTANCEMOVEMODE_H
|
|
#define CSV_RENDER_INSTANCEMOVEMODE_H
|
|
|
|
#include "../widget/modebutton.hpp"
|
|
|
|
namespace CSVRender
|
|
{
|
|
class InstanceMoveMode : public CSVWidget::ModeButton
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
InstanceMoveMode (QWidget *parent = 0);
|
|
};
|
|
}
|
|
|
|
#endif
|