2 @Copyright Looking Glass Studios, Inc.
3 1996,1997,1998,1999,2000 Unpublished Work.
6 // $Header: r:/t2repos/thief2/src/deepc/game/dpcgoalr.cpp,v 1.1 2000/01/26 19:06:33 porges Exp $
11 cStr
GoalStringTable()
13 const sMissionData
* data
= GetMissionData();
14 cStr table
= data
->path
;
21 cStr
GoalDescription(int i
)
24 sprintf(buf
,"TEXT_%d",i
);
25 return FetchUIString(GoalStringTable(),buf
);
28 cStr
GoalFiction(int i
)
31 sprintf(buf
,"FICTION_%d",i
);
32 return FetchUIString(GoalStringTable(),buf
);
35 IDataSource
* GoalStatus(int state
)
38 sprintf(buf
,"goali%03d",state
);
39 return FetchUIImage(buf
);