18 lines
357 B
Ucode
18 lines
357 B
Ucode
|
/**
|
||
|
* Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
|
||
|
*/
|
||
|
class CoverGroupRenderingComponent extends PrimitiveComponent
|
||
|
native(AI);
|
||
|
|
||
|
cpptext
|
||
|
{
|
||
|
virtual FPrimitiveSceneProxy* CreateSceneProxy();
|
||
|
virtual void UpdateBounds();
|
||
|
virtual UBOOL ShouldRecreateProxyOnUpdateTransform() const;
|
||
|
};
|
||
|
|
||
|
defaultproperties
|
||
|
{
|
||
|
HiddenGame=TRUE
|
||
|
}
|