| 3 | namespace sfg { |
| 4 | |
| 5 | PrimitiveVertex::PrimitiveVertex() : |
| 6 | color( sf::Color::White ) |
| 7 | { |
| 8 | } |
| 9 | |
| 10 | PrimitiveVertex::PrimitiveVertex( const PrimitiveVertex& other ) : |
| 11 | position( other.position ), |
nothing calls this directly
no outgoing calls
no test coverage detected