Skip to content

Commit

Permalink
- converted FuncMummy into a class
Browse files Browse the repository at this point in the history
  • Loading branch information
coelckers committed Oct 15, 2021
1 parent 008825f commit 3bda4d5
Show file tree
Hide file tree
Showing 2 changed files with 305 additions and 289 deletions.
8 changes: 8 additions & 0 deletions source/games/exhumed/src/aistuff.h
Expand Up @@ -505,6 +505,14 @@ struct AICreatureChunk : public ExhumedAI
virtual void Tick(RunListEvent* ev) override;
};

struct AIMummy : 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 3bda4d5

Please sign in to comment.