This commit is contained in:
JohnCorby 2023-04-22 13:21:38 -07:00
parent e45a213153
commit abbe7efedc

View File

@ -158,11 +158,11 @@ namespace NewHorizons.Builder.Body
return ImageUtilities.GetTexture(_currentMod, path, wrap: true, linear: linear); return ImageUtilities.GetTexture(_currentMod, path, wrap: true, linear: linear);
} }
private readonly struct Tile private struct Tile
{ {
private readonly HeightMapModule.HeightMapTileInfo _info; private HeightMapModule.HeightMapTileInfo _info;
private readonly string _keyword, _prefix; private string _keyword, _prefix;
private readonly Texture2D _texture, _smoothness, _normal; private Texture2D _texture, _smoothness, _normal;
public Tile(HeightMapModule.HeightMapTileInfo info, string keyword, string prefix) public Tile(HeightMapModule.HeightMapTileInfo info, string keyword, string prefix)
{ {