Files
Syntriax.Engine/Engine.Core/Systems/Abstract/ILastFrameUpdate.cs

7 lines
103 B
C#

namespace Engine.Core;
public interface ILastFrameUpdate : IBehaviour
{
void LastActiveFrame();
}