Draws the split in the given window.
| 232 | #ifndef GRAPHICS_DISABLED |
| 233 | // Draws the split in the given window. |
| 234 | void SPLIT::Mark(ScrollView* window) const { |
| 235 | window->Pen(ScrollView::GREEN); |
| 236 | window->Line(point1->pos.x, point1->pos.y, point2->pos.x, point2->pos.y); |
| 237 | window->UpdateWindow(); |
| 238 | } |
| 239 | #endif |
| 240 | |
| 241 | // Creates two outlines out of one by splitting the original one in half. |
nothing calls this directly
no test coverage detected