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