Skip to content

Commit

Permalink
did a bit more
Browse files Browse the repository at this point in the history
  • Loading branch information
TotallyNotMichael-GH committed Jul 20, 2024
1 parent 47fbe53 commit 53175f2
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/SB/Game/zNPCTypeDutchman.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,28 @@ void zNPCDutchman::update_animation(float)
void zNPCDutchman::add_splash(const xVec3&, float)
{
}

U8 zNPCDutchman::PhysicsFlags() const
{
return 3;
}

U8 zNPCDutchman::ColPenByFlags() const
{
return 16;
}

U8 zNPCDutchman::ColChkByFlags() const
{
return 16;
}

U8 zNPCDutchman::ColPenFlags() const
{
return 0;
}

U8 zNPCDutchman::ColChkFlags() const
{
return 0;
}
5 changes: 5 additions & 0 deletions src/SB/Game/zNPCTypeDutchman.h
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,11 @@ struct zNPCDutchman : zNPCSubBoss
void render_debug();
void update_animation(float);
void add_splash(const xVec3&, float);
U8 PhysicsFlags() const;
U8 ColPenByFlags() const;
U8 ColChkByFlags() const;
U8 ColPenFlags() const;
U8 ColChkFlags() const;
};

struct zNPCGoalDutchmanNil : zNPCGoalCommon
Expand Down

0 comments on commit 53175f2

Please sign in to comment.