Update float3 to readonly and use in modifier for parameters.

This commit is contained in:
teinarss
2020-12-02 19:30:54 +01:00
committed by abcdefg30
parent d3847d49ed
commit 2c9a36b9a3
15 changed files with 51 additions and 51 deletions

View File

@@ -30,7 +30,7 @@ namespace OpenRA.Graphics
public interface ITintableRenderable
{
IRenderable WithTint(float3 newTint);
IRenderable WithTint(in float3 newTint);
}
public interface IFinalizedRenderable