You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- Implements the OneSky Project Group, Project, File, and Translation APIs, minus delete commands, etc. - The communication with OneSky works, but the interface between the Localization Service module and the OneSky plugin about what general Localization Service Commands map to which OneSky commands needs to be implemented. - Some debug code remains, and some clean up still needs to be done - Some minor changes to Localization Service module [CL 2562023 by Joe Conley in Main branch]
34 lines
942 B
C
34 lines
942 B
C
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "Core.h"
|
|
#include "ILocalizationServiceProvider.h" // for TRANSLATION_SERVICES_WITH_SLATE
|
|
|
|
#ifndef LOCALIZATION_SERVICES_WITH_SLATE
|
|
#error LOCALIZATION_SERVICES_WITH_SLATE not defined
|
|
#endif // LOCALIZATION_SERVICES_WITH_SLATE
|
|
|
|
#if LOCALIZATION_SERVICES_WITH_SLATE
|
|
#include "SlateBasics.h"
|
|
#include "EditorStyle.h"
|
|
#endif // LOCALIZATION_SERVICES_WITH_SLATE
|
|
|
|
#if WITH_EDITOR
|
|
#include "Engine.h"
|
|
#include "PackageTools.h"
|
|
#include "MessageLog.h"
|
|
#endif
|
|
|
|
#if WITH_UNREAL_DEVELOPER_TOOLS
|
|
#include "MessageLogModule.h"
|
|
#endif
|
|
|
|
#include "ILocalizationServiceModule.h"
|
|
#include "LocalizationServiceModule.h"
|
|
#include "LocalizationServiceSettings.h"
|
|
#include "ILocalizationServiceProvider.h"
|
|
#include "ILocalizationServiceRevision.h"
|
|
#include "ILocalizationServiceOperation.h"
|
|
#include "ILocalizationServiceState.h"
|
|
#include "LocalizationServiceOperations.h" |