30 lines
558 B
C#
30 lines
558 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Gauntlet
|
|
{
|
|
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class TestGroup : System.Attribute
|
|
{
|
|
/// <summary>
|
|
/// Names that can refer to this param
|
|
/// </summary>
|
|
public string GroupName;
|
|
|
|
public int Priority;
|
|
|
|
public TestGroup(string InGroupName, int InPriority=5)
|
|
{
|
|
this.GroupName = InGroupName;
|
|
this.Priority = InPriority;
|
|
}
|
|
}
|
|
}
|