mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
Link d_a_npc and d_a_npc_cd2 (#3019)
This commit is contained in:
@@ -409,6 +409,15 @@ public:
|
||||
class daNpcF_MoveBgActor_c : public daNpcF_c {
|
||||
private:
|
||||
public:
|
||||
// these functions are inferred based on daBaseNpc_moveBgActor_c -
|
||||
// defining them in this order fixes weak function order for this class in d_a_npc
|
||||
// (otherwise Delete is placed under Draw instead of under Create)
|
||||
int MoveBGCreateHeap();
|
||||
int MoveBGCreate();
|
||||
int MoveBGDelete();
|
||||
int MoveBGExecute();
|
||||
int MoveBGDraw();
|
||||
|
||||
virtual bool CreateHeap() { return true; }
|
||||
virtual bool Create() { return true; }
|
||||
virtual bool Execute(Mtx**) { return true; }
|
||||
|
||||
Reference in New Issue
Block a user