mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-18 11:19:10 +00:00
fix relative includes in NucleusLib, move them up to where they belong, remove some unused files
This commit is contained in:
@ -330,58 +330,3 @@ void plLogicModBase::Write(hsStream* stream, hsResMgr* mgr)
|
||||
fFlags.Write(stream);
|
||||
stream->Writebool(fDisabled);
|
||||
}
|
||||
|
||||
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Maintainers Marker Component
|
||||
//
|
||||
//
|
||||
#if 0
|
||||
#include "../plModifier/plMaintainersMarkerModifier.h"
|
||||
|
||||
//Class that accesses the paramblock below.
|
||||
class plMaintainersMarkerComponent : public plComponent
|
||||
{
|
||||
public:
|
||||
plMaintainersMarkerComponent();
|
||||
void DeleteThis() { delete this; }
|
||||
hsBool SetupProperties(plMaxNode* node, plErrorMsg* pErrMsg);
|
||||
hsBool PreConvert(plMaxNode *pNode, plErrorMsg *pErrMsg);
|
||||
hsBool Convert(plMaxNode *node, plErrorMsg *pErrMsg);
|
||||
};
|
||||
|
||||
//Max desc stuff necessary.
|
||||
CLASS_DESC(plMaintainersMarkerComponent, gMaintainersDesc, "Maintainers Marker", "MaintainersMarker", COMP_TYPE_TYPE, Class_ID(0x7d7f1f72, 0x405355f5))
|
||||
|
||||
//The MAX paramblock stuff below
|
||||
ParamBlockDesc2 gMaintainersBk
|
||||
(
|
||||
1, _T("maintainersMarker"), 0, &gMaintainersDesc, P_AUTO_CONSTRUCT, plComponent::kRefComp,
|
||||
end
|
||||
);
|
||||
|
||||
plMaintainersMarkerComponent::plMaintainersMarkerComponent()
|
||||
{
|
||||
fClassDesc = &gMaintainersDesc;
|
||||
fClassDesc->MakeAutoParamBlocks(this);
|
||||
}
|
||||
|
||||
hsBool plMaintainersMarkerComponent::SetupProperties(plMaxNode* node, plErrorMsg* pErrMsg)
|
||||
{
|
||||
node->SetForceLocal(true);
|
||||
return true;
|
||||
}
|
||||
hsBool plMaintainersMarkerComponent::Convert(plMaxNode *node, plErrorMsg *pErrMsg)
|
||||
{
|
||||
plMaintainersMarkerModifier* pSpawn = TRACKED_NEW plMaintainersMarkerModifier;
|
||||
node->AddModifier(pSpawn);
|
||||
return true;
|
||||
}
|
||||
|
||||
hsBool plMaintainersMarkerComponent::PreConvert(plMaxNode *pNode, plErrorMsg *pErrMsg)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user