Compare commits

...

2 Commits

Author SHA1 Message Date
Tristan 'Natrist' Cormier
58ba0ce436
Merge 44bee4cbd7 into 71a31e19bd 2026-02-15 06:41:21 +01:00
Tristan Cormier
44bee4cbd7 feat(net): add CHARACTER_CREATE_INFO struct 2026-02-14 21:03:36 -05:00

View File

@ -1214,4 +1214,17 @@ struct CHARACTER_INFO {
uint8_t firstLogin; uint8_t firstLogin;
}; };
struct CHARACTER_CREATE_INFO {
char name[48];
uint8_t raceID;
uint8_t classID;
uint8_t sexID;
uint8_t skinID;
uint8_t faceID;
uint8_t hairStyleID;
uint8_t hairColorID;
uint8_t facialHairStyleID;
uint8_t outfitID;
};
#endif #endif