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

7 lines
114 B
C#

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