home *** CD-ROM | disk | FTP | other *** search
- #ifndef GRAPHICS_REGIONS_H
- #define GRAPHICS_REGIONS_H
- /*
- ** $Filename: graphics/regions.h $
- ** $Release: 1.3 $
- **
- **
- **
- ** (C) Copyright 1985,1986,1987,1988 Commodore-Amiga, Inc.
- ** All Rights Reserved
- */
-
- #ifndef GRAPHICS_GFX_H
- #include <graphics/gfx.h>
- #endif
-
- struct RegionRectangle
- {
- struct RegionRectangle *Next,*Prev;
- struct Rectangle bounds;
- };
-
- struct Region
- {
- struct Rectangle bounds;
- struct RegionRectangle *RegionRectangle;
- };
-
- #endif /* GRAPHICS_REGIONS_H */
-