mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 06:49:55 +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
|