15 lines
356 B
C#
15 lines
356 B
C#
using System;
|
|
|
|
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class GameSystemGroupAttribute : Attribute
|
|
{
|
|
public GameSystemGroupAttribute(Type systemGroupType)
|
|
{
|
|
SystemGroupType = systemGroupType;
|
|
}
|
|
|
|
public Type SystemGroupType { get; set; }
|
|
}
|
|
} |