You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
19 lines
681 B
C++
19 lines
681 B
C++
// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "TemplateProjectDefs.h"
|
|
#include "DefaultTemplateProjectDefs.generated.h"
|
|
|
|
UCLASS()
|
|
class GAMEPROJECTGENERATION_API UDefaultTemplateProjectDefs : public UTemplateProjectDefs
|
|
{
|
|
GENERATED_UCLASS_BODY()
|
|
|
|
virtual bool GeneratesCode(const FString& ProjectTemplatePath) const override;
|
|
|
|
virtual bool IsClassRename(const FString& DestFilename, const FString& SrcFilename, const FString& FileExtension) const override;
|
|
|
|
virtual void AddConfigValues(TArray<FTemplateConfigValue>& ConfigValuesToSet, const FString& TemplateName, const FString& ProjectName, bool bShouldGenerateCode) const override;
|
|
};
|