Files
riversong-code-showcase/Source/Engine/Core/Groups/EarlyGameSystemGroup.cs
2026-05-21 16:04:49 +02:00

9 lines
276 B
C#

namespace DanieleMarotta.RiversongCodeShowcase
{
[InitializeBefore(typeof(DefaultGameSystemGroup))]
[UpdateBefore(typeof(DefaultGameSystemGroup))]
[DisposeBefore(typeof(DefaultGameSystemGroup))]
public class EarlyGameSystemGroup : GameSystemGroup
{
}
}