10 lines
163 B
Plaintext
10 lines
163 B
Plaintext
// * Is the PCSpeaker
|
|
// * the Henchman's master?
|
|
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = GetMaster() == GetPCSpeaker();
|
|
return iResult;
|
|
}
|