Make Vector3(float[] coords) constructor public.

This commit is contained in:
CloneTrooper1019 2019-11-18 19:19:42 -06:00
parent 3092adc27d
commit 66bdae9387
2 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ namespace RobloxFiles.DataTypes
Z = z;
}
internal Vector3(float[] coords)
public Vector3(float[] coords)
{
X = coords.Length > 0 ? coords[0] : 0;
Y = coords.Length > 1 ? coords[1] : 0;

Binary file not shown.