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