Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // # Definições #
- #define FACTION_NONE (0)
- #define FACTION_SAVIORS (1)
- #define FACTION_TRIAD (2)
- #define FACTION_ZOMBO (3)
- #define FACTION_LSSURV (4)
- // # Enumeradores #
- enum Faction_Data
- {
- fName[24],
- fColor,
- fSkinMale,
- fSkinFemale,
- };
- // # Arrays #
- new FactionInfo[][Faction_Data] =
- {
- // Nome, Cor, Skin Masculina, Skin Feminina
- {"None", -1, MALE_SKIN, FEMALE_SKIN}, // Faction padrão
- {"The Saviors", 0xEB1B00FF, 181, 298},
- {"Triad", 0xFF6A00FF, 294, 169},
- {"Zombotech Corporation", 0xD93838FF, 70, 91},
- {"Los Santos Survivors", 0x389BD9FF, 7, 93}
- };
Advertisement
Add Comment
Please, Sign In to add comment