blob: 475a37101c34b17ed50ffbaccd5f14126bd0ed01 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL.
// Copyright (c) 2014 Evol developers
#ifndef EVOL_CHAR_CONFIG
#define EVOL_CHAR_CONFIG
void config_final(void);
void config_min_char_class(const char *val);
void config_max_char_class(const char *val);
void config_min_look(const char *val);
void config_max_look(const char *val);
extern int min_char_class;
extern int max_char_class;
extern int min_look;
extern int max_look;
#endif // EVOL_CHAR_CONFIG
|