Adding a movable system/component

This commit is contained in:
Zoe Roux
2021-05-17 17:03:15 +02:00
parent 7313a9d4e0
commit 76ccd80df7
13 changed files with 157 additions and 41 deletions

View File

@@ -81,7 +81,7 @@ namespace WAL
template<typename T2>
Vector3<T> operator*(T2 d) const
{
return Vector2<T>(this->x * d, this->y * d, this->z * d);
return Vector3<T>(this->x * d, this->y * d, this->z * d);
}
template<typename T2>