summaryrefslogtreecommitdiff
path: root/src/char/int_quest.h
blob: 2cb359d40eaefad249770c3c253c04ba22d89fcc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (c) Athena Dev Teams - Licensed under GNU GPL
// For more information, see LICENCE in the main folder

#ifndef CHAR_QUEST_H
#define CHAR_QUEST_H

#ifdef HERCULES_CORE
void inter_quest_defaults(void);
#endif // HERCULES_CORE

/**
 * inter_quest interface
 **/
struct inter_quest_interface {
	int (*parse_frommap) (int fd);
};

struct inter_quest_interface *inter_quest;

#endif /* CHAR_QUEST_H */