mirror of
				https://github.com/zenorogue/hyperrogue.git
				synced 2025-10-31 05:52:59 +00:00 
			
		
		
		
	ru:: operator *=
This commit is contained in:
		| @@ -128,6 +128,7 @@ struct xy { | ||||
|   xy& operator += (xy b) { x += b.x; y += b.y; return self; } | ||||
|   xy& operator -= (xy b) { x -= b.x; y -= b.y; return self; } | ||||
|   xy& operator *= (ld s) { x *= s; y *= s; return self; } | ||||
|   xy& operator *= (xy b) { x *= b.x; y *= b.y; return self; } | ||||
|   xy& operator /= (ld s) { x /= s; y /= s; return self; } | ||||
|   }; | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Zeno Rogue
					Zeno Rogue