blob: 5f82fece6906637a44ac717e093210bb067da48a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef BRICE_H_
#define BRICE_H_
#include <string>
namespace game {
extern bool canJump;
extern bool canSprint;
std::string getValue(const std::string& id);
bool setValue(const std::string& id, const std::string& value);
void briceSave(void);
void briceLoad(void);
void briceUpdate(void);
}
#endif // BRICE_H_
|