Update of /cvsroot/wpdev/wolfpack/network
In directory sc8-pr-cvs1:/tmp/cvs-serv29987/network
Modified Files:
uosocket.cpp
Log Message:
Removed all old singletons and changed dragdrop into a namespace.
Index: uosocket.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/network/uosocket.cpp,v
retrieving revision 1.287
retrieving revision 1.288
diff -C2 -d -r1.287 -r1.288
*** uosocket.cpp 13 Sep 2003 13:08:41 -0000 1.287
--- uosocket.cpp 13 Sep 2003 13:37:16 -0000 1.288
***************
*** 237,243 ****
break;
case 0x07:
! cDragItems::getInstance()->grabItem( this, dynamic_cast< cUORxDragItem* >( packet ) ); break;
case 0x08:
! cDragItems::getInstance()->dropItem( this, dynamic_cast< cUORxDropItem* >( packet ) ); break;
case 0x09:
handleRequestLook( dynamic_cast< cUORxRequestLook* >( packet ) ); break;
--- 237,243 ----
break;
case 0x07:
! DragAndDrop::grabItem( this, dynamic_cast< cUORxDragItem* >( packet ) ); break;
case 0x08:
! DragAndDrop::dropItem( this, dynamic_cast< cUORxDropItem* >( packet ) ); break;
case 0x09:
handleRequestLook( dynamic_cast< cUORxRequestLook* >( packet ) ); break;
***************
*** 245,249 ****
handleAction( dynamic_cast< cUORxAction* >( packet ) ); break;
case 0x13:
! cDragItems::getInstance()->equipItem( this, dynamic_cast< cUORxWearItem* >( packet ) ); break;
case 0x22:
resync(); break;
--- 245,249 ----
handleAction( dynamic_cast< cUORxAction* >( packet ) ); break;
case 0x13:
! DragAndDrop::equipItem( this, dynamic_cast< cUORxWearItem* >( packet ) ); break;
case 0x22:
resync(); break;
|