Fixed missing semicolons

This commit is contained in:
Simon Lübeß
2025-03-19 21:15:37 +01:00
parent 6d50208700
commit 77a7a04637
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ namespace GlitchyEngine.Renderer
/**
* Returns the size in bytes of an index of the IndexFormat.
*/
public int IndexSize => this == Index16Bit ? 2 : 4
public int IndexSize => this == Index16Bit ? 2 : 4;
}
public class IndexBuffer : Buffer