11 lines
277 B
C++
11 lines
277 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "OnlineAsyncTaskManagerNull.h"
|
|
|
|
void FOnlineAsyncTaskManagerNull::OnlineTick()
|
|
{
|
|
check(NullSubsystem);
|
|
check(FPlatformTLS::GetCurrentThreadId() == OnlineThreadId || !FPlatformProcess::SupportsMultithreading());
|
|
}
|
|
|