From 3e9c3938176c0afaf1bd91ba022926d06ef0da5a Mon Sep 17 00:00:00 2001 From: Syntriax Date: Thu, 1 Feb 2024 12:02:53 +0300 Subject: [PATCH] style: ICamera2D.WorldToScreenPosition Parameter Name Fixed --- Engine.Core/Abstract/ICamera2D.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Engine.Core/Abstract/ICamera2D.cs b/Engine.Core/Abstract/ICamera2D.cs index 0b809af..dc919ca 100644 --- a/Engine.Core/Abstract/ICamera2D.cs +++ b/Engine.Core/Abstract/ICamera2D.cs @@ -5,5 +5,5 @@ public interface ICamera2D : IBehaviour, IAssignableTransform float Zoom { get; set; } Vector2D ScreenToWorldPosition(Vector2D screenPosition); - Vector2D WorldToScreenPosition(Vector2D screenPosition); + Vector2D WorldToScreenPosition(Vector2D worldPosition); }