riversong code showcase
This commit is contained in:
6
Source/Engine/Core/Groups/DefaultGameSystemGroup.cs
Normal file
6
Source/Engine/Core/Groups/DefaultGameSystemGroup.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
namespace DanieleMarotta.RiversongCodeShowcase
|
||||
{
|
||||
public class DefaultGameSystemGroup : GameSystemGroup
|
||||
{
|
||||
}
|
||||
}
|
||||
9
Source/Engine/Core/Groups/EarlyGameSystemGroup.cs
Normal file
9
Source/Engine/Core/Groups/EarlyGameSystemGroup.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace DanieleMarotta.RiversongCodeShowcase
|
||||
{
|
||||
[InitializeBefore(typeof(DefaultGameSystemGroup))]
|
||||
[UpdateBefore(typeof(DefaultGameSystemGroup))]
|
||||
[DisposeBefore(typeof(DefaultGameSystemGroup))]
|
||||
public class EarlyGameSystemGroup : GameSystemGroup
|
||||
{
|
||||
}
|
||||
}
|
||||
9
Source/Engine/Core/Groups/LateGameSystemGroup.cs
Normal file
9
Source/Engine/Core/Groups/LateGameSystemGroup.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace DanieleMarotta.RiversongCodeShowcase
|
||||
{
|
||||
[InitializeAfter(typeof(DefaultGameSystemGroup))]
|
||||
[UpdateAfter(typeof(DefaultGameSystemGroup))]
|
||||
[DisposeAfter(typeof(DefaultGameSystemGroup))]
|
||||
public class LateGameSystemGroup : GameSystemGroup
|
||||
{
|
||||
}
|
||||
}
|
||||
7
Source/Engine/Core/Groups/RootGameSystemGroup.cs
Normal file
7
Source/Engine/Core/Groups/RootGameSystemGroup.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace DanieleMarotta.RiversongCodeShowcase
|
||||
{
|
||||
[DisableDiscovery]
|
||||
public class RootGameSystemGroup : GameSystemGroup
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user