Skip to content

Commit

Permalink
- converted FuncSpider to a class
Browse files Browse the repository at this point in the history
  • Loading branch information
coelckers committed Oct 16, 2021
1 parent 5a424bd commit 8d7f370
Show file tree
Hide file tree
Showing 2 changed files with 260 additions and 246 deletions.
8 changes: 8 additions & 0 deletions source/games/exhumed/src/aistuff.h
Expand Up @@ -645,6 +645,14 @@ struct AISnake : public ExhumedAI
void Draw(RunListEvent* ev) override;
};

struct AISpider : 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 8d7f370

Please sign in to comment.