Skip to content

Commit

Permalink
- converted FuncLavaDude(Limb) into classes
Browse files Browse the repository at this point in the history
  • Loading branch information
coelckers committed Oct 15, 2021
1 parent e73725a commit 45e7b7c
Show file tree
Hide file tree
Showing 2 changed files with 289 additions and 277 deletions.
13 changes: 13 additions & 0 deletions source/games/exhumed/src/aistuff.h
Expand Up @@ -479,6 +479,19 @@ struct AIGrenade : public ExhumedAI
void RadialDamage(RunListEvent* ev) override;
};

struct AILavaDude : public ExhumedAI
{
void Tick(RunListEvent* ev) override;
void Damage(RunListEvent* ev) override;
void Draw(RunListEvent* ev) override;
};

struct AILavaDudeLimb : public ExhumedAI
{
void Tick(RunListEvent* ev) override;
void Draw(RunListEvent* ev) override;
};


void runlist_DispatchEvent(ExhumedAI* ai, int nObject, int nMessage, int nDamage, int nRun);

Expand Down

0 comments on commit 45e7b7c

Please sign in to comment.