1
0
KF2-Dev-Scripts/Engine/Classes/EditorLinkSelectionInterface.uc

17 lines
749 B
Ucode
Raw Normal View History

2020-12-13 15:01:13 +00:00
//=============================================================================
// EditorLinkSelectionInterface
//
// Implement this interface to allow this object to perform special handling when 'linkselected' or 'unlinkselected'
// is called from the editor (for example, if the user has two objects selected and calls linkselected and you want the objects
// to bind themselves together in some fashion)
//
// Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
//=============================================================================
interface EditorLinkSelectionInterface
native;
cpptext
{
virtual void LinkSelection(USelection* SelectedObjects){}
virtual void UnLinkSelection(USelection* SelectedObjects){}
}