9 lines
177 B
C#
9 lines
177 B
C#
![]() |
using DisplayCommands;
|
||
|
|
||
|
namespace TanksServer.Graphics;
|
||
|
|
||
|
internal interface IFrameConsumer
|
||
|
{
|
||
|
Task OnFrameDoneAsync(GamePixelGrid gamePixelGrid, PixelGrid observerPixels);
|
||
|
}
|