chore: ICamera2D to Engine

This commit is contained in:
Syntriax 2024-01-31 18:48:47 +03:00
parent 1fd8060857
commit 364c383e08
2 changed files with 1 additions and 10 deletions

2
Engine

@ -1 +1 @@
Subproject commit 6c36d4d21d4f84a0ae986d4c75983235287dc413 Subproject commit a1f63d2728e866914600fcde27d6c582aee05874

View File

@ -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);
}