More renames, world should be done

This commit is contained in:
KimLS
2014-08-21 23:30:09 -07:00
parent 5bf49d2ef9
commit 4821ed79fb
42 changed files with 103 additions and 103 deletions
+31
View File
@@ -0,0 +1,31 @@
#ifndef SOFCHARCREATEDATA_H
#define SOFCHARCREATEDATA_H
#pragma pack(1)
struct RaceClassAllocation {
unsigned int Index;
unsigned int BaseStats[7];
unsigned int DefaultPointAllocation[7];
};
struct RaceClassCombos {
unsigned int ExpansionRequired;
unsigned int Race;
unsigned int Class;
unsigned int Deity;
unsigned int AllocationIndex;
unsigned int Zone;
};
/*struct SoFCCData {
unsigned char Unknown;
unsigned int RaceClassStatEntryCount;
SoFCCRaceClassData RCData[109];
unsigned int Unknown2;
SoFCCStartZoneData StartZoneData[641];
};
*/
#pragma pack()
#endif