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

9 lines
177 B
C#
Raw Normal View History

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