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

9 lines
175 B
C#
Raw Normal View History

2024-05-13 01:23:34 +02:00
using ServicePoint2;
namespace TanksServer.Graphics;
internal interface IFrameConsumer
{
Task OnFrameDoneAsync(GamePixelGrid gamePixelGrid, PixelGrid observerPixels);
}