| 7 | namespace TFE_DarkForces |
| 8 | { |
| 9 | void lrect_clear(LRect* rect) |
| 10 | { |
| 11 | rect->left = 0; |
| 12 | rect->top = 0; |
| 13 | rect->right = 0; |
| 14 | rect->bottom = 0; |
| 15 | } |
| 16 | |
| 17 | void lrect_set(LRect* rect, s16 left, s16 top, s16 right, s16 bottom) |
| 18 | { |
no outgoing calls
no test coverage detected