riversong code showcase
This commit is contained in:
15
Source/Engine/Core/Attributes/GameSystemGroupAttribute.cs
Normal file
15
Source/Engine/Core/Attributes/GameSystemGroupAttribute.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
|
||||
namespace DanieleMarotta.RiversongCodeShowcase
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Class)]
|
||||
public class GameSystemGroupAttribute : Attribute
|
||||
{
|
||||
public GameSystemGroupAttribute(Type systemGroupType)
|
||||
{
|
||||
SystemGroupType = systemGroupType;
|
||||
}
|
||||
|
||||
public Type SystemGroupType { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user