mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-12-14 13:14:48 +00:00
12 lines
221 B
C++
12 lines
221 B
C++
|
#include "ctrl_draggable.h"
|
||
|
|
||
|
CCtrlDraggable* CCtrlDraggable::_LastDraggedSheet = NULL;
|
||
|
|
||
|
CCtrlDraggable::CCtrlDraggable(const TCtorParam ¶m) :
|
||
|
CCtrlBase( param )
|
||
|
{
|
||
|
dragged = false;
|
||
|
draggable = false;
|
||
|
}
|
||
|
|