You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
37 lines
979 B
C
37 lines
979 B
C
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
|
|
#include "TargetDeviceServices.h"
|
|
|
|
|
|
/* Dependencies
|
|
*****************************************************************************/
|
|
|
|
#include "CoreUObject.h"
|
|
#include "Messaging.h"
|
|
#include "ModuleManager.h"
|
|
#include "TargetPlatform.h"
|
|
#include "Ticker.h"
|
|
|
|
|
|
/* Private declarations
|
|
*****************************************************************************/
|
|
|
|
/** Declares the module's log category. */
|
|
DECLARE_LOG_CATEGORY_EXTERN(TargetDeviceServicesLog, Log, All);
|
|
|
|
/** Defines the interval in seconds in which devices are being pinged by the proxy manager. */
|
|
#define TARGET_DEVICE_SERVICES_PING_INTERVAL 2.5f
|
|
|
|
|
|
/* Private includes
|
|
*****************************************************************************/
|
|
|
|
#include "TargetDeviceServiceMessages.h"
|
|
#include "TargetDeviceProxy.h"
|
|
#include "TargetDeviceProxyManager.h"
|
|
#include "TargetDeviceService.h"
|
|
#include "TargetDeviceServiceManager.h"
|