summaryrefslogtreecommitdiff
path: root/src/being/petinfo.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-09-23 00:42:38 +0300
committerAndrei Karas <akaras@inbox.ru>2014-09-23 00:42:38 +0300
commit2acd4cd73813e8cd0bf6d662e10e34af59cfac99 (patch)
tree2fa62d81b7849510df10a9efb8cec8b3384fa12b /src/being/petinfo.h
parentc4122f537ce74b55c6e465d2020f17b791b278a4 (diff)
downloadplus-2acd4cd73813e8cd0bf6d662e10e34af59cfac99.tar.gz
plus-2acd4cd73813e8cd0bf6d662e10e34af59cfac99.tar.bz2
plus-2acd4cd73813e8cd0bf6d662e10e34af59cfac99.tar.xz
plus-2acd4cd73813e8cd0bf6d662e10e34af59cfac99.zip
eathena: use petinfo for loading and storing data about pet.
Diffstat (limited to 'src/being/petinfo.h')
-rw-r--r--src/being/petinfo.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/being/petinfo.h b/src/being/petinfo.h
index 3d171079d..8e7b50200 100644
--- a/src/being/petinfo.h
+++ b/src/being/petinfo.h
@@ -30,8 +30,11 @@ struct PetInfo final
id(0),
level(0),
hungry(0),
- intimate(0),
- race(0)
+ intimacy(0),
+ race(0),
+ performance(0),
+ hairStyle(0),
+ equip(0)
{ }
A_DELETE_COPY(PetInfo)
@@ -40,7 +43,11 @@ struct PetInfo final
int id;
int level;
int hungry;
+ int intimacy;
int race;
+ int performance;
+ int hairStyle;
+ int equip;
};
#endif // BEING_PETINFO_H