mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-10-04 02:21:11 -04: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
|