home *** CD-ROM | disk | FTP | other *** search
- Attribute VB_Name = "RECTPLAY1"
- Option Explicit
-
- ' Rectplay
-
- '--------------------------------------------------------
- '
- ' Application Globals
- '
- '-------------------------------------------------------
-
- ' Global rectangles
-
- Global Rect1 As New dwRECT
- Global Rect2 As New dwRECT
- Global RectUnion As New dwRECT
- Global RectIntersect As New dwRECT
- Global RectOffset As New dwRECT
- Global RectSubtract As New dwRECT
-
- Global SettingState% ' 0 = Point detect mode
- ' 1 = Setting rect1
- ' 2 = Setting rect2
-
- Global StartPoint As New dwPoint
- Global EndPoint As New dwPoint
- Global HasCapture% ' Indicates that tracking is in effect
-
-