This commit is contained in:
2024-12-19 17:15:02 +03:00
parent 87abfde205
commit 3c66a65b40
27 changed files with 254 additions and 63 deletions

View File

@@ -6,11 +6,11 @@ namespace Engine.Graphics;
public interface IPresenter : IUpdate, IRender
{
public bool IsExiting { get; }
public int Width { get; }
public int Height { get; }
bool IsExiting { get; }
int Width { get; }
int Height { get; }
public event Action<ResizeEventArgs> Resize;
event Action<ResizeEventArgs> Resize;
public void Present(IConstTexture parTexture);
void Present(IConstTexture parTexture);
}