From 364c383e08fca9bc947463bbc1984c2c828cc364 Mon Sep 17 00:00:00 2001 From: Syntriax Date: Wed, 31 Jan 2024 18:48:47 +0300 Subject: [PATCH] chore: ICamera2D to Engine --- Engine | 2 +- Game/Abstract/ICamera2D.cs | 9 --------- 2 files changed, 1 insertion(+), 10 deletions(-) delete mode 100644 Game/Abstract/ICamera2D.cs diff --git a/Engine b/Engine index 6c36d4d..a1f63d2 160000 --- a/Engine +++ b/Engine @@ -1 +1 @@ -Subproject commit 6c36d4d21d4f84a0ae986d4c75983235287dc413 +Subproject commit a1f63d2728e866914600fcde27d6c582aee05874 diff --git a/Game/Abstract/ICamera2D.cs b/Game/Abstract/ICamera2D.cs deleted file mode 100644 index 0b809af..0000000 --- a/Game/Abstract/ICamera2D.cs +++ /dev/null @@ -1,9 +0,0 @@ -namespace Syntriax.Engine.Core.Abstract; - -public interface ICamera2D : IBehaviour, IAssignableTransform -{ - float Zoom { get; set; } - - Vector2D ScreenToWorldPosition(Vector2D screenPosition); - Vector2D WorldToScreenPosition(Vector2D screenPosition); -}