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

7 lines
100 B
C#

namespace Syntriax.Engine.Core;
public interface IPreUpdate : IBehaviour
{
void PreUpdate();
}