Changeset 6950 for trunk/src/ddraw/rectangle.h
- Timestamp:
- Oct 5, 2001, 2:33:10 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/ddraw/rectangle.h
r5344 r6950 1 /* $Id: rectangle.h,v 1. 6 2001-03-20 23:18:56 mikeExp $ */1 /* $Id: rectangle.h,v 1.7 2001-10-05 12:33:10 sandervl Exp $ */ 2 2 3 3 /* … … 39 39 Coord 40 40 width() const, 41 height() const, 42 Top() const, 43 Left() const, 44 Bottom() const, 45 Right() const; 41 height() const; 42 43 Coord Top() const 44 { 45 return lTop; 46 } 47 48 Coord Left() const 49 { 50 return lLeft; 51 } 52 53 Coord Bottom() const 54 { 55 return lBottom; 56 } 57 58 Coord Right() const 59 { 60 return lRight; 61 } 46 62 47 63 void* GetMemPtr();
Note:
See TracChangeset
for help on using the changeset viewer.