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