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

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; }
}
}