summaryrefslogtreecommitdiff
path: root/src/char/config.h
blob: d60abc0f3eb7c88d4de38319d3b12f95dc4adadf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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_inter_server_ip(const char *val);
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 char *inter_server_ip;
extern int min_char_class;
extern int max_char_class;
extern int min_look;
extern int max_look;

#endif  // EVOL_CHAR_CONFIG