servicepoint-tanks/tanks-backend/TanksServer/Graphics/IFrameConsumer.cs

9 lines
171 B
C#
Raw Normal View History

2024-05-26 15:06:09 +02:00
using ServicePoint;
namespace TanksServer.Graphics;
internal interface IFrameConsumer
{
2024-10-16 20:15:32 +02:00
Task OnFrameDoneAsync(GamePixelGrid gamePixelGrid, Bitmap observerPixels);
}