blob: 44299582602b482627b34a8a1f7b732abac311fe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Copyright (c) Athena Dev Teams - Licensed under GNU GPL
// For more information, see LICENCE in the main folder
#ifndef CHAR_INT_QUEST_H
#define CHAR_INT_QUEST_H
#include "common/hercules.h"
/**
* inter_quest interface
**/
struct inter_quest_interface {
int (*parse_frommap) (int fd);
};
#ifdef HERCULES_CORE
void inter_quest_defaults(void);
#endif // HERCULES_CORE
HPShared struct inter_quest_interface *inter_quest;
#endif /* CHAR_INT_QUEST_H */
|