diff options
Diffstat (limited to 'src/login/login.h')
-rw-r--r-- | src/login/login.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/login/login.h b/src/login/login.h index 4c1ea07e7..a4256df53 100644 --- a/src/login/login.h +++ b/src/login/login.h @@ -91,5 +91,21 @@ struct mmo_account { struct global_reg account_reg2[ACCOUNT_REG2_NUM]; // account script variables (stored on login server) }; +struct auth_node { + + int account_id; + uint32 login_id1; + uint32 login_id2; + uint32 ip; + char sex; +}; + +struct online_login_data { + + int account_id; + int waiting_disconnect; + int char_server; +}; + #endif /* _LOGIN_H_ */ |