1
0
KF2-Dev-Scripts/Engine/Classes/ApexDynamicComponent.uc
2020-12-13 18:01:13 +03:00

25 lines
767 B
Ucode

/*=============================================================================
ApexDynamicComponent.uc: PhysX APEX integration. Dynamic Component
Copyright 2008-2009 NVIDIA Corporation.
=============================================================================*/
/* This class defines a default APEX dynamic component */
class ApexDynamicComponent extends ApexComponentBase
native(Mesh);
/* Render resources used by this component, and whose release progress is tracked by the FRenderCommandFence in FracturedBaseComponent. */
var protected{protected} const native transient pointer ComponentDynamicResources{class FApexDynamicResources};
cpptext
{
public:
protected:
friend class FApexDynamicSceneProxy;
}
defaultproperties
{
}