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