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

9 lines
182 B
C#
Raw Normal View History

using DisplayCommands;
namespace TanksServer.Graphics;
internal interface IFrameConsumer
{
2024-04-28 15:34:32 +02:00
ValueTask OnFrameDoneAsync(GamePixelGrid gamePixelGrid, PixelGrid observerPixels);
}