| 247 | } |
| 248 | |
| 249 | bool ComponentListComponent::cursorValid() |
| 250 | { |
| 251 | if(mCursor.x() < 0 || mCursor.y() < 0 || mCursor.x() >= mGridSize.x() || mCursor.y() >= mGridSize.y()) |
| 252 | return false; |
| 253 | |
| 254 | return getCell(mCursor.x(), mCursor.y()) != NULL; |
| 255 | } |
| 256 | |
| 257 | void ComponentListComponent::update(int deltaTime) |
| 258 | { |
nothing calls this directly
no outgoing calls
no test coverage detected