diff --git a/DataTypes/Vector3.cs b/DataTypes/Vector3.cs index 8461cb2..7504937 100644 --- a/DataTypes/Vector3.cs +++ b/DataTypes/Vector3.cs @@ -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; diff --git a/RobloxFileFormat.dll b/RobloxFileFormat.dll index 4303fe9..3713341 100644 Binary files a/RobloxFileFormat.dll and b/RobloxFileFormat.dll differ