
* Fixes #3385. * Updated the header guard names to C++ standards. Thanks to @elfring's suggestion!
16 lines
383 B
C++
16 lines
383 B
C++
// Copyright (c) rAthena Dev Teams - Licensed under GNU GPL
|
|
// For more information, see LICENCE in the main folder
|
|
|
|
#ifndef INT_ELEMENTAL_HPP
|
|
#define INT_ELEMENTAL_HPP
|
|
|
|
struct s_elemental;
|
|
|
|
void inter_elemental_sql_init(void);
|
|
void inter_elemental_sql_final(void);
|
|
int inter_elemental_parse_frommap(int fd);
|
|
|
|
bool mapif_elemental_delete(int ele_id);
|
|
|
|
#endif /* INT_ELEMENTAL_HPP */
|