diff options
author | shennetsind <ind@henn.et> | 2013-04-08 00:11:28 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-04-08 00:11:28 -0300 |
commit | 81ad44467d7f0d4f0d63637ef2996012b9c81a9a (patch) | |
tree | 8bf9b897ac8f802e1cd764c22df36219b3172c02 /src/map/clif.h | |
parent | e742e8cf1a8356f9b70ab3ad9ecdc1051976ef72 (diff) | |
download | hercules-81ad44467d7f0d4f0d63637ef2996012b9c81a9a.tar.gz hercules-81ad44467d7f0d4f0d63637ef2996012b9c81a9a.tar.bz2 hercules-81ad44467d7f0d4f0d63637ef2996012b9c81a9a.tar.xz hercules-81ad44467d7f0d4f0d63637ef2996012b9c81a9a.zip |
Minimum Cash Shop Support
So that opening it on new clients won't get you kicked by the server.
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/clif.h')
-rw-r--r-- | src/map/clif.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/map/clif.h b/src/map/clif.h index 60a2868bf..1fffb42e8 100644 --- a/src/map/clif.h +++ b/src/map/clif.h @@ -1022,6 +1022,9 @@ struct clif_interface { void (*pSkillSelectMenu) (int fd, struct map_session_data *sd); void (*pMoveItem) (int fd, struct map_session_data *sd); void (*pDull) (int fd, struct map_session_data *sd); + /* RagExe Cash Shop [Ind/Hercules] */ + void (*pCashShopOpen) (int fd, struct map_session_data *sd); + void (*pCashShopClose) (int fd, struct map_session_data *sd); } clif_s; struct clif_interface *clif; |