Surgo/Project/Source/SurgoGame.Target.cs

12 lines
296 B
C#
Raw Normal View History

2024-04-08 00:28:09 -07:00
using TargetInfo = UnrealBuildTool.TargetInfo;
using TargetRules = UnrealBuildTool.TargetRules;
using TargetType = UnrealBuildTool.TargetType;
2024-04-08 00:28:09 -07:00
public class SurgoGameTarget : TargetRules
{
public SurgoGameTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Game;
2024-04-08 00:28:09 -07:00
}
}