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

9 lines
174 B
C#
Raw Normal View History

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