API renames, change ref renderer to in renderer in IDrawable, make Layer implement IDrawable.

This commit is contained in:
2023-06-15 22:39:34 +02:00
parent bf4fb6e1e3
commit 964b903500
18 changed files with 122 additions and 67 deletions

View File

@@ -4,6 +4,6 @@ namespace DaggerFramework
{
public interface IDrawable
{
public void Draw(ref Renderer renderer);
public void Draw(in Renderer renderer);
}
}