Convert datatypes to classes instead of structs.

This commit is contained in:
CloneTrooper1019
2019-02-01 12:40:39 -06:00
parent 795018e243
commit f7184eb8f8
35 changed files with 182 additions and 169 deletions

View File

@ -415,7 +415,7 @@ namespace RobloxFiles.BinaryFormat.Chunks
g = color3uint8_G[i],
b = color3uint8_B[i];
return Color3.fromRGB(r, g, b);
return Color3.FromRGB(r, g, b);
});
break;