1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 00:37:15 +01:00

Update Official.hpp

This commit is contained in:
Sandu Liviu Catalin 2021-03-20 19:36:41 +02:00
parent 83e1863154
commit 85a305d987

View File

@ -21,7 +21,7 @@ struct LgVector : public Vector3
/* --------------------------------------------------------------------------------------------
* Copy constructor.
*/
LgVector(const Vector3 & v)
explicit LgVector(const Vector3 & v)
: Vector3(v)
{
}
@ -128,7 +128,7 @@ struct LgQuaternion : public Quaternion
/* --------------------------------------------------------------------------------------------
* Copy constructor.
*/
LgQuaternion(const Quaternion & q)
explicit LgQuaternion(const Quaternion & q)
: Quaternion(q)
{
}
@ -245,7 +245,7 @@ struct LgRGB : public Color3
/* --------------------------------------------------------------------------------------------
* Copy constructor.
*/
LgRGB(const Color3 & c)
explicit LgRGB(const Color3 & c)
: Color3(c)
{
}