7 lines
150 B
C#
7 lines
150 B
C#
namespace TanksServer.Graphics;
|
|
|
|
internal interface IFrameConsumer
|
|
{
|
|
Task OnFrameDoneAsync(GamePixelGrid gamePixelGrid, Bitmap observerPixels);
|
|
}
|