// Copyright Epic Games, Inc. All Rights Reserved. using EpicGames.Core; namespace UnrealBuildTool { /// /// CLion project file generator which is just the CMakefileGenerator and only here for UBT to match against /// class CLionGenerator : CMakefileGenerator { /// /// Creates a new instance of the class. /// public CLionGenerator(FileReference? InOnlyGameProject) : base(InOnlyGameProject) { } } }