From c08f5f530fbc6c26c2e3ee19af44bbb43788c938 Mon Sep 17 00:00:00 2001 From: ikpil Date: Tue, 12 Sep 2023 00:02:47 +0900 Subject: [PATCH] feat: add RcMatrix4x4f --- src/DotRecast.Core/{RcMatrix4X4.cs => RcMatrix4x4f.cs} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename src/DotRecast.Core/{RcMatrix4X4.cs => RcMatrix4x4f.cs} (93%) diff --git a/src/DotRecast.Core/RcMatrix4X4.cs b/src/DotRecast.Core/RcMatrix4x4f.cs similarity index 93% rename from src/DotRecast.Core/RcMatrix4X4.cs rename to src/DotRecast.Core/RcMatrix4x4f.cs index ac5c291..5d66bb5 100644 --- a/src/DotRecast.Core/RcMatrix4X4.cs +++ b/src/DotRecast.Core/RcMatrix4x4f.cs @@ -1,6 +1,6 @@ namespace DotRecast.Core { - public struct RcMatrix4X4 + public struct RcMatrix4x4 { public float m11; public float m12;