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

7 lines
105 B
C#

namespace Engine.Core;
public interface IFirstFrameUpdate : IBehaviour
{
void FirstActiveFrame();
}