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