Extend the mouseEvent structure so that it also contains the location of the previous mouse event.

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@5797 4a71c877-e1ca-e34f-864e-861f7616d084
master
Freddie Witherden 2008-08-11 17:18:26 +00:00
parent 2b572a9492
commit c6c9aeb0c6
1 changed files with 4 additions and 1 deletions

View File

@ -120,8 +120,11 @@ struct _eventMouse
{
event event;
// Location of the event
// Location of the mouse
point loc;
// Previous location of the mouse
point previousLoc;
};
/*