diff options
author | Kevin <Kevin@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-04-10 03:36:33 +0000 |
---|---|---|
committer | Kevin <Kevin@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-04-10 03:36:33 +0000 |
commit | def5e240def548bdd4fa6e3ba424d03c883b5bc1 (patch) | |
tree | 0ef455f459163037e07d105c35bcce9db922d6cf /src/map/pc.h | |
parent | 34f6935f5f67b01f73551a8fad30cbb12f12c1c2 (diff) | |
download | hercules-def5e240def548bdd4fa6e3ba424d03c883b5bc1.tar.gz hercules-def5e240def548bdd4fa6e3ba424d03c883b5bc1.tar.bz2 hercules-def5e240def548bdd4fa6e3ba424d03c883b5bc1.tar.xz hercules-def5e240def548bdd4fa6e3ba424d03c883b5bc1.zip |
Some preliminary code for the questlog system (clif packet functions and basic data structures).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12544 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.h')
-rw-r--r-- | src/map/pc.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/map/pc.h b/src/map/pc.h index fd0459119..8ab170161 100644 --- a/src/map/pc.h +++ b/src/map/pc.h @@ -14,6 +14,7 @@ #include "status.h" // OPTION_*, struct weapon_atk #include "unit.h" // unit_stop_attack(), unit_stop_walking() #include "vending.h" // struct s_vending +#include "mob.h" #define MAX_PC_BONUS 10 @@ -349,6 +350,10 @@ struct map_session_data { struct mail_data inbox; } mail; + //Quest log system [Kevin] + int num_quests; + struct quest quest_log[MAX_QUEST]; + // temporary debug [flaviojs] const char* debug_file; int debug_line; |