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

9 lines
272 B
C#

namespace DanieleMarotta.RiversongCodeShowcase
{
[InitializeAfter(typeof(DefaultGameSystemGroup))]
[UpdateAfter(typeof(DefaultGameSystemGroup))]
[DisposeAfter(typeof(DefaultGameSystemGroup))]
public class LateGameSystemGroup : GameSystemGroup
{
}
}