Skip to content

Commit

Permalink
- converted FuncLion into a class
Browse files Browse the repository at this point in the history
  • Loading branch information
coelckers committed Oct 15, 2021
1 parent 45e7b7c commit b772200
Show file tree
Hide file tree
Showing 2 changed files with 402 additions and 382 deletions.
8 changes: 8 additions & 0 deletions source/games/exhumed/src/aistuff.h
Expand Up @@ -492,6 +492,14 @@ struct AILavaDudeLimb : public ExhumedAI
void Draw(RunListEvent* ev) override;
};

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


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

Expand Down

0 comments on commit b772200

Please sign in to comment.