Files
UnrealEngineUWP/Engine/Source/Runtime/EngineSettings/Classes/GeneralProjectSettings.h
Jeff Campeau 69b60e16cb AppxManifest and Resource files for Xbox One generated on the fly.
Settings used to generate these made settable from the editor.

[CL 2521784 by Jeff Campeau in Main branch]
2015-04-22 17:05:11 -04:00

62 lines
1.7 KiB
C++

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "GeneralProjectSettings.generated.h"
UCLASS(config=Game, defaultconfig)
class ENGINESETTINGS_API UGeneralProjectSettings
: public UObject
{
GENERATED_UCLASS_BODY()
/** The name of the company (author, provider) that created the project. */
UPROPERTY(config, EditAnywhere, Category=Publisher)
FString CompanyName;
/** The distinguished name of the company (author, provider) that created the project. */
UPROPERTY(config, EditAnywhere, Category=Publisher)
FString CompanyDistinguishedName;
/** The project's copyright and/or trademark notices. */
UPROPERTY(config, EditAnywhere, Category=Legal)
FString CopyrightNotice;
/** The project's description text. */
UPROPERTY(config, EditAnywhere, Category=About)
FString Description;
/** The project's homepage URL. */
UPROPERTY(config, EditAnywhere, Category=Publisher)
FString Homepage;
/** The project's licensing terms. */
UPROPERTY(config, EditAnywhere, Category=Legal)
FString LicensingTerms;
/** The project's privacy policy. */
UPROPERTY(config, EditAnywhere, Category=Legal)
FString PrivacyPolicy;
/** The project's unique identifier. */
UPROPERTY(config, EditAnywhere, Category=About)
FGuid ProjectID;
/** The project's name. */
UPROPERTY(config, EditAnywhere, Category=About)
FString ProjectName;
/** The project's version number. */
UPROPERTY(config, EditAnywhere, Category=About)
FString ProjectVersion;
/** The project's support contact information. */
UPROPERTY(config, EditAnywhere, Category=Publisher)
FString SupportContact;
/** The project's title as displayed on the window title bar */
UPROPERTY(config, EditAnywhere, Category=Displayed)
FText ProjectDisplayedTitle;
};