feat: last active frame interface

This commit is contained in:
2025-08-03 09:43:18 +03:00
parent 9824980cbf
commit b8217f2106
2 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
namespace Syntriax.Engine.Core;
public interface ILastFrameUpdate : IBehaviour
{
void LastActiveFrame();
}