summaryrefslogblamecommitdiff
path: root/src/char/int_mercenary.h
blob: 1d84a931a2656da485cc51999e5297fd802b723d (plain) (tree)
1
2
3
4
5
6
7
8
9


                                                          

                            
 


                                 
 
                                    
 







                                                                       
 
                                                  
 
                                 
// Copyright (c) Athena Dev Teams - Licensed under GNU GPL
// For more information, see LICENCE in the main folder

#ifndef CHAR_INT_MERCENARY_H
#define CHAR_INT_MERCENARY_H

#include "../common/cbasetypes.h"

struct mmo_charstatus;

void inter_mercenary_defaults(void);

struct inter_mercenary_interface {
    bool (*owner_fromsql) (int char_id, struct mmo_charstatus *status);
    bool (*owner_tosql) (int char_id, struct mmo_charstatus *status);
    bool (*owner_delete) (int char_id);
    int (*sql_init) (void);
    void (*sql_final) (void);
    int (*parse_frommap) (int fd);
};

struct inter_mercenary_interface *inter_mercenary;

#endif /* CHAR_INT_MERCENARY_H */