You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
22 lines
472 B
C++
22 lines
472 B
C++
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "IFriendList.h"
|
|
|
|
/**
|
|
* Class containing the friend information - used to build the list view.
|
|
*/
|
|
class FRecentPlayerList
|
|
: public TSharedFromThis<FRecentPlayerList>
|
|
, public IFriendList
|
|
{
|
|
};
|
|
|
|
/**
|
|
* Creates the implementation for an FRecentPlayerList.
|
|
*
|
|
* @return the newly created FRecentPlayerList implementation.
|
|
*/
|
|
FACTORY(TSharedRef< FRecentPlayerList >, FRecentPlayerList);
|