You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
30 lines
779 B
C++
30 lines
779 B
C++
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "FriendsAndChatPrivatePCH.h"
|
|
|
|
const FName FFriendsChatChromeStyle::TypeName( TEXT("FFriendsChatChromeStyle") );
|
|
|
|
const FFriendsChatChromeStyle& FFriendsChatChromeStyle::GetDefault()
|
|
{
|
|
static FFriendsChatChromeStyle Default;
|
|
return Default;
|
|
}
|
|
|
|
FFriendsChatChromeStyle& FFriendsChatChromeStyle::SetSlashMarkupButtonStyle(const FButtonStyle& ButtonStyle)
|
|
{
|
|
SlashMarkupButtonStyle = ButtonStyle;
|
|
return *this;
|
|
}
|
|
|
|
FFriendsChatChromeStyle& FFriendsChatChromeStyle::SetChatBackgroundBrush(const FSlateBrush& Value)
|
|
{
|
|
ChatBackgroundBrush = Value;
|
|
return *this;
|
|
}
|
|
|
|
FFriendsChatChromeStyle& FFriendsChatChromeStyle::SetTabBackgroundBrush(const FSlateBrush& Value)
|
|
{
|
|
TabBackgroundBrush = Value;
|
|
return *this;
|
|
}
|