My Project
 
Loading...
Searching...
No Matches
bestiary.h
Go to the documentation of this file.
1#pragma once
2
3#include "typedefine.h"
4
5class Mob;
6class Char;
7
8class Bestiary{
9public:
10 static Mob* mob(int depth);
11 static boolean isBoss(Char* mob);
12private:
13 static Mob* mobClass(int depth);
14};
Definition bestiary.h:8
static boolean isBoss(Char *mob)
Definition bestiary.cpp:222
static Mob * mob(int depth)
Definition bestiary.cpp:28
Definition char.h:9
Definition mob.h:9