diff options
author | blackhole89 <blackhole89@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-05-21 18:59:13 +0000 |
---|---|---|
committer | blackhole89 <blackhole89@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-05-21 18:59:13 +0000 |
commit | 01920ca0c1f2c30ebb0abd4793cf6e308454f0cd (patch) | |
tree | b9ac128b14e1016c94cbc107ef4798ea82c9c149 /src/map/clif.h | |
parent | e3ae5ebcd80e0fe528e522b87aec0022488bb446 (diff) | |
download | hercules-01920ca0c1f2c30ebb0abd4793cf6e308454f0cd.tar.gz hercules-01920ca0c1f2c30ebb0abd4793cf6e308454f0cd.tar.bz2 hercules-01920ca0c1f2c30ebb0abd4793cf6e308454f0cd.tar.xz hercules-01920ca0c1f2c30ebb0abd4793cf6e308454f0cd.zip |
* Part A of the Homunculus code.
This only features the structures, status_* and clif_* (packets) and is
not functional yet in any conventional way, but doesn't interfere
with present functionality either.
I would only forget half of this stuff if I tried to do all at once.
Expect the rest somewhen within the upcoming week.
(This is not similar to jA's implementation.)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6681 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.h')
-rw-r--r-- | src/map/clif.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/map/clif.h b/src/map/clif.h index 621dc28d4..492e24587 100644 --- a/src/map/clif.h +++ b/src/map/clif.h @@ -330,6 +330,13 @@ void clif_parse_ReqFeel(int fd, struct map_session_data *sd, int skilllv); void clif_feel_info(struct map_session_data *sd, int feel_level);
void clif_hate_mob(struct map_session_data *sd, int skilllv,int mob_id);
void clif_mission_mob(struct map_session_data *sd, unsigned short mob_id, unsigned short progress);
+
+// [blackhole89]
+int clif_spawnhomun(struct homun_data *hd);
+int clif_homunack(struct map_session_data *sd);
+int clif_homuninfo(struct map_session_data *sd);
+int clif_homuninsight(struct block_list *bl,va_list ap);
+int clif_homunoutsight(struct block_list *bl,va_list ap);
#endif
|