refactor(core): Removed ICamera

This commit is contained in:
2024-01-30 12:13:47 +03:00
parent 9853e0af36
commit 9768dbdded
2 changed files with 0 additions and 27 deletions

View File

@@ -1,12 +0,0 @@
using System;
namespace Syntriax.Engine.Core.Abstract;
public interface ICamera : IAssignableTransform
{
Action<ICamera>? OnZoomChanged { get; set; }
float Zoom { get; set; }
void Update();
}