| 29 | cPosition( unsigned int pX, unsigned int pY ) : mX( pX ), mY( pY ) {} |
| 30 | |
| 31 | void Set( unsigned int pX, unsigned int pY ) { mX = pX; mY = pY; } |
| 32 | void Clear() { mX = 0; mY = 0; } |
| 33 | |
| 34 | int distanceTo(const cPosition& pPosition) const { |
nothing calls this directly
no outgoing calls
no test coverage detected