My Project
 
Loading...
Searching...
No Matches
chasm.h
Go to the documentation of this file.
1#pragma once
2#include <string>
3
4class Hero;
5class Mob;
6
7class Chasm{
8private:
9 static const std::string TXT_CHASM;
10 static const std::string TXT_YES;
11 static const std::string TXT_NO;
12 static const std::string TXT_JUMP;
13
14public:
15 static bool jumpConfirmed;
16
17 static void heroJump(Hero* hero);
18 static void heroFall(int pos);
19 static void heroLand();
20 static void mobFall(Mob* mob);
21};
Definition chasm.h:7
static void mobFall(Mob *mob)
Definition chasm.cpp:99
static void heroLand()
Definition chasm.cpp:86
static bool jumpConfirmed
Definition chasm.h:15
static void heroFall(int pos)
Definition chasm.cpp:50
static void heroJump(Hero *hero)
Definition chasm.cpp:42
Definition hero.h:18
Definition mob.h:9