rott/kf_sources/XInterface/Classes/PropertyManagerBase.uc
2026-07-14 20:27:09 +07:00

29 lines
802 B
Ucode

//==============================================================================
// Created on: 12/02/2003
// Description
//
// Written by Ron Prestenback
// © 2003, Epic Games, Inc. All Rights Reserved
//==============================================================================
class PropertyManagerBase extends Object
native
abstract;
cpptext
{
virtual void SetParent( UGUIController* InParent ) {}
virtual void SetCurrent( UObject** InCurrent ) {}
virtual void SetWindow( void* InWindow ) {}
virtual void Show(UBOOL bVisible) { }
virtual UBOOL IsVisible() {return 0;}
virtual void* GetSnoop() {return NULL;}
virtual void* GetHook() {return NULL;}
virtual void* GetWindow(){return NULL;}
}
var GUIController Parent;