Changeset 3587 for libcaca/trunk/caca-php/caca.php
- Timestamp:
- Jul 27, 2009, 1:26:15 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/caca-php/caca.php
r3295 r3587 121 121 } 122 122 123 function getCursorX() {124 return caca_ get_cursor_x($this->cv);125 } 126 127 function getCursorY() {128 return caca_ get_cursor_y($this->cv);123 function whereX() { 124 return caca_wherex($this->cv); 125 } 126 127 function whereY() { 128 return caca_wherey($this->cv); 129 129 } 130 130
Note: See TracChangeset
for help on using the changeset viewer.