mirror of
https://github.com/EQEmu/Server.git
synced 2026-01-06 13:33:52 +00:00
19 lines
353 B
C
19 lines
353 B
C
#pragma once
|
|
|
|
struct CharCreatePointAllocation
|
|
{
|
|
unsigned int Index;
|
|
unsigned int BaseStats[7];
|
|
unsigned int DefaultPointAllocation[7];
|
|
unsigned int BaseResists[7];
|
|
};
|
|
|
|
struct CharCreateCombination {
|
|
unsigned int ExpansionRequired;
|
|
unsigned int Race;
|
|
unsigned int Class;
|
|
unsigned int Deity;
|
|
unsigned int AllocationIndex;
|
|
unsigned int Zone;
|
|
};
|