6 lines
85 B
Plaintext
6 lines
85 B
Plaintext
int StartingConditional()
|
|
{
|
|
if (Random(2) == 0) return TRUE;
|
|
return FALSE;
|
|
}
|