24 lines
No EOL
261 B
C++
24 lines
No EOL
261 B
C++
void
|
|
SHGameFear::SHGameFear(void)
|
|
{
|
|
|
|
}
|
|
|
|
|
|
void
|
|
SHGameFear::ScientistKill(ncPlayer pp, entity sci)
|
|
{
|
|
SHPlayer pl = (SHPlayer)pp;
|
|
|
|
if (pl.IsScientist() == true) {
|
|
pl.frags++;
|
|
} else {
|
|
pl.frags--;
|
|
}
|
|
}
|
|
|
|
string
|
|
SHGameFear::Title(void)
|
|
{
|
|
return ("Stealth");
|
|
} |