This commit is contained in:
2025-01-07 00:48:37 +03:00
parent 2061eb9347
commit 0df34ef0ec
97 changed files with 866 additions and 764 deletions

View File

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