servicepoint-tanks/tanks-backend/TanksServer/Graphics/IFrameConsumer.cs
2024-11-12 19:14:02 +01:00

7 lines
150 B
C#

namespace TanksServer.Graphics;
internal interface IFrameConsumer
{
Task OnFrameDoneAsync(GamePixelGrid gamePixelGrid, Bitmap observerPixels);
}