| 444 | struct Cell |
| 445 | { |
| 446 | Cell(sf::Keyboard::Scancode theScancode, sf::Vector2f sizeRatio = {1.f, 1.f}, float marginRightRatio = 0.f) : |
| 447 | scancode(theScancode), |
| 448 | size(sizeRatio * keySize), |
| 449 | marginRight(marginRightRatio * keySize) |
| 450 | { |
| 451 | } |
| 452 | |
| 453 | Cell(sf::Keyboard::Scancode theScancode, float marginRightRatio) : |
| 454 | Cell(theScancode, {1.f, 1.f}, marginRightRatio) |
nothing calls this directly
no outgoing calls
no test coverage detected