Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ def MatchingFor(*versions):
Object(NonMatching, "SB/Game/zNPCGoalRobo.cpp", extra_cflags=["-sym on"]),
Object(Matching, "SB/Game/zNPCGoalTiki.cpp", extra_cflags=["-sym on"]),
Object(NonMatching, "SB/Game/zNPCMessenger.cpp"),
Object(NonMatching, "SB/Game/zNPCMgr.cpp"),
Object(NonMatching, "SB/Game/zNPCMgr.cpp", extra_cflags=["-sym on"]),
Object(Matching, "SB/Game/zNPCTypes.cpp"),
Object(NonMatching, "SB/Game/zNPCTypeCommon.cpp"),
Object(NonMatching, "SB/Game/zNPCTypeRobot.cpp"),
Expand Down
6 changes: 5 additions & 1 deletion src/SB/Core/x/xBehaveMgr.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ struct xBehaveMgr : RyzMemData
void ScenePrepare();
void SceneFinish();
void SceneReset();
xFactory* GetFactory();

xFactory* GetFactory()
{
return this->goalFactory;
}
};

void xBehaveMgr_ScenePrepare();
Expand Down
6 changes: 5 additions & 1 deletion src/SB/Core/x/xNPCBasic.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,11 @@ struct xNPCBasic : xEnt, xFactoryInst
virtual void Init(xEntAsset* asset);
virtual void PostInit();
virtual void Setup();
virtual void PostSetup();

virtual void PostSetup()
{
}

virtual void Reset();
virtual void Process(xScene* xscn, F32 dt);
virtual void BUpdate(xVec3*);
Expand Down
Loading