blob: 3288b449af07dca06587b4b8fcc513c3d7fdc09c (
plain) (
tree)
|
|
#ifndef DATA_H
#define DATA_H
#include "login.h"
int try_load_plr(char *player_name, playerc_t *conn);
int try_write_plr(player_t *plr);
enum ParsePlayerState {
ReadingData,
Comma
};
enum ParsePlayerType {
Hp,
MaxHp,
Level,
Xp,
LocationId,
PwHash,
Name
};
#endif
|