33 lines
653 B
C++
33 lines
653 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
// Module includes
|
|
#include "OnlineUserFacebookCommon.h"
|
|
#include "OnlineSubsystemFacebookPackage.h"
|
|
|
|
class FOnlineSubsystemFacebook;
|
|
|
|
/**
|
|
* Facebook implementation of the Online User Interface
|
|
*/
|
|
class FOnlineUserFacebook : public FOnlineUserFacebookCommon
|
|
{
|
|
|
|
public:
|
|
|
|
// FOnlineUserFacebook
|
|
|
|
/**
|
|
* Constructor used to indicate which OSS we are a part of
|
|
*/
|
|
FOnlineUserFacebook(FOnlineSubsystemFacebook* InSubsystem);
|
|
|
|
/**
|
|
* Default destructor
|
|
*/
|
|
virtual ~FOnlineUserFacebook();
|
|
|
|
};
|
|
|
|
typedef TSharedPtr<FOnlineUserFacebook, ESPMode::ThreadSafe> FOnlineUserFacebookPtr; |