forgot path.h ._.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@11959 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
ultramage 2007-12-22 13:05:51 +00:00
parent b3b275f24f
commit 0d011cc9b2

16
src/map/path.h Normal file
View File

@ -0,0 +1,16 @@
// Copyright (c) Athena Dev Teams - Licensed under GNU GPL
// For more information, see LICENCE in the main folder
#ifndef _PATH_H_
#define _PATH_H_
// calculates destination cell for knockback
int path_blownpos(int m,int x0,int y0,int dx,int dy,int count);
// tries to find a walkable path
bool path_search(struct walkpath_data *wpd,int m,int x0,int y0,int x1,int y1,int flag,cell_t cell);
// tries to find a shootable path
bool path_search_long(struct shootpath_data *spd,int m,int x0,int y0,int x1,int y1,cell_t cell);
#endif /* _PATH_H_ */