blob: dc3ea96c795e4b6850f1cd9c70a40b9d2947f9e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#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 briceClear(void);
void briceSave(void);
void briceLoad(void);
void briceUpdate(void);
}
#endif // BRICE_H_
|