|
|
|
|
@ -3,6 +3,99 @@
|
|
|
|
|
namespace dvl { |
|
|
|
|
|
|
|
|
|
const char *const CREDITS_LINES[] = { |
|
|
|
|
#ifdef HELLFIRE |
|
|
|
|
" Synergistic Software", |
|
|
|
|
"", |
|
|
|
|
"General Manager", |
|
|
|
|
" Bob Clardy", |
|
|
|
|
"", |
|
|
|
|
"Lead Programmer", |
|
|
|
|
" Donald Tsang", |
|
|
|
|
"", |
|
|
|
|
"Software Engineering", |
|
|
|
|
" Jim Edwards, Gary Powell, D'Andre Pritchett", |
|
|
|
|
"", |
|
|
|
|
"Art Director", |
|
|
|
|
" Kirt Lemons", |
|
|
|
|
"", |
|
|
|
|
"Artists", |
|
|
|
|
" Darren Lamb, Mike McMillen,", |
|
|
|
|
" Jason Robertson, Peter Watje", |
|
|
|
|
"", |
|
|
|
|
"Design", |
|
|
|
|
" Kirt Lemons, Donald Tsang, Peter Watje", |
|
|
|
|
" Jim Edwards, Mike McMillen", |
|
|
|
|
"", |
|
|
|
|
"Additional Design", |
|
|
|
|
" Michael Ormsby", |
|
|
|
|
"", |
|
|
|
|
"Sound Design, SFX & Audio Engineering", |
|
|
|
|
" Craig Utterback", |
|
|
|
|
"", |
|
|
|
|
"Quality Assurance Lead", |
|
|
|
|
" Mona Branham", |
|
|
|
|
"", |
|
|
|
|
"Testers", |
|
|
|
|
" Chris Barker, Steve Chin, Derek Clardy, Conor Durdy,", |
|
|
|
|
" Amy Edwards, Greg Hightower, Tim Jensen, Jeremy Jones,", |
|
|
|
|
" John Lang, Daudi Pritchett, Doug Van Horne, Gordon Wilcox", |
|
|
|
|
"", |
|
|
|
|
"Manual", |
|
|
|
|
" Suzanne David, Linda Westerfield,", |
|
|
|
|
" Ann Dickens Clardy, Kirt Lemons", |
|
|
|
|
"", |
|
|
|
|
"Voices", |
|
|
|
|
" Jim Edwards, Paul Eiding, Eve Forward,", |
|
|
|
|
" Mackenzie Powell, Rodney Sherwood, Craig Utterback", |
|
|
|
|
"", |
|
|
|
|
"", |
|
|
|
|
" Additional Work", |
|
|
|
|
"", |
|
|
|
|
"Quest Text Writing", |
|
|
|
|
" Eve Forward", |
|
|
|
|
"", |
|
|
|
|
"Thanks to", |
|
|
|
|
" Trisha Durdy, Dustin Freeman, D'Andre Pritchett", |
|
|
|
|
"", |
|
|
|
|
"", |
|
|
|
|
"", |
|
|
|
|
" Special Thanks to Blizzard Entertainment", |
|
|
|
|
"", |
|
|
|
|
"", |
|
|
|
|
"", |
|
|
|
|
"", |
|
|
|
|
" Sierra On-Line Inc. Northwest", |
|
|
|
|
"", |
|
|
|
|
"Quality Assurance Manager", |
|
|
|
|
" Gary Stevens", |
|
|
|
|
"", |
|
|
|
|
"Quality Assurance Lead Tester", |
|
|
|
|
" Bernadette Pryor", |
|
|
|
|
"", |
|
|
|
|
"Main Testers", |
|
|
|
|
" Erik Johnson, David Lee, Kristofer Hall", |
|
|
|
|
"", |
|
|
|
|
"Additional Testers", |
|
|
|
|
" Cade Myers, Jeff Ingham, Phil Kuhlmey,", |
|
|
|
|
" Eric Gelfand, Mark Wyman, Torsten Reinl,", |
|
|
|
|
" Erinn Hamilton", |
|
|
|
|
"", |
|
|
|
|
"Product Marketing Manager", |
|
|
|
|
" Eddie Ranchigoda", |
|
|
|
|
"", |
|
|
|
|
"Public Relations Manager", |
|
|
|
|
" Eric Twelker", |
|
|
|
|
"", |
|
|
|
|
"Associate Product Manager", |
|
|
|
|
" Joe Roth", |
|
|
|
|
"", |
|
|
|
|
"Thanks to", |
|
|
|
|
" Cindy Vanous, Joshua Bentley, Robert Zimmerman, Robert Jerauld,", |
|
|
|
|
" Dennis Ham, Andrea Stone, Beth Quintana, Jennifer Keenan, Gary Brown,", |
|
|
|
|
" Ken Eaton, Matt Eslick, Kate Powell, Bryon Mcpherson, David Beetlestone", |
|
|
|
|
"", |
|
|
|
|
"" |
|
|
|
|
#else |
|
|
|
|
"Game Design", |
|
|
|
|
" Blizzard North", |
|
|
|
|
"", |
|
|
|
|
@ -458,6 +551,7 @@ const char *const CREDITS_LINES[] = {
|
|
|
|
|
" ", |
|
|
|
|
" ", |
|
|
|
|
" " |
|
|
|
|
#endif |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
const std::size_t CREDITS_LINES_SIZE = sizeof(CREDITS_LINES) / sizeof(CREDITS_LINES[0]); |
|
|
|
|
|