From d81a9f247001608538d8b4fc056ddf46ed2174eb Mon Sep 17 00:00:00 2001 From: Relintai Date: Sat, 27 Mar 2021 10:39:53 +0100 Subject: [PATCH] Small fixes to alapok. --- 01_alapok.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/01_alapok.txt b/01_alapok.txt index 6c1b7f6..f7023f1 100644 --- a/01_alapok.txt +++ b/01_alapok.txt @@ -32,8 +32,8 @@ | + operator-=(b: Vector2) | | + operator+(a: Vector2, b: Vector2) : Vector2 | | + operator-(a: Vector2, b: Vector2) : Vector2 | -| + operator==(b: Vector2) : bool | -| + operator!=(b: Vector2) : bool | +| + operator==(b: Vector2, b: Vector2) : bool | +| + operator!=(b: Vector2, b: Vector2) : bool | | + Vector2() | | + Vector2(b : Vector2) | | + Vector2(x : float, y : float) | @@ -73,8 +73,8 @@ | + operator-=(b: Vector3) | | + operator+(a: Vector3, b: Vector3) : Vector3 | | + operator-(a: Vector3, b: Vector3) : Vector3 | -| + operator==(b: Vector3) : bool | -| + operator!=(b: Vector3) : bool | +| + operator==(b: Vector3, b: Vector2) : bool | +| + operator!=(b: Vector3, b: Vector2) : bool | | + Vector3() | | + Vector3(b : Vector3) | | + Vector3(x : float, y : float, z : float) |