1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-21 12:49:10 +00:00

Obliterate hsBool

This commit is contained in:
2012-07-11 01:28:00 -04:00
parent 5f78b33db4
commit a709e17069
1041 changed files with 7889 additions and 8070 deletions

View File

@ -45,7 +45,7 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#include "plDynaDecal.h"
#include "plAuxSpan.h"
hsBool plDynaSplot::Age(double t, float ramp, float decay, float life)
bool plDynaSplot::Age(double t, float ramp, float decay, float life)
{
float age = float(t - fBirth);
if( age >= life )
@ -130,7 +130,7 @@ hsBool plDynaSplot::Age(double t, float ramp, float decay, float life)
return false;
}
hsBool plDynaRipple::Age(double t, float ramp, float decay, float life)
bool plDynaRipple::Age(double t, float ramp, float decay, float life)
{
float age = float(t - fBirth);
if( age >= life )
@ -210,7 +210,7 @@ hsBool plDynaRipple::Age(double t, float ramp, float decay, float life)
return false;
}
hsBool plDynaWake::Age(double t, float ramp, float decay, float life)
bool plDynaWake::Age(double t, float ramp, float decay, float life)
{
float age = float(t - fBirth);
if( age >= life )
@ -290,7 +290,7 @@ hsBool plDynaWake::Age(double t, float ramp, float decay, float life)
return false;
}
hsBool plDynaWave::Age(double t, float ramp, float decay, float life)
bool plDynaWave::Age(double t, float ramp, float decay, float life)
{
float age = float(t - fBirth);
if( age >= life )
@ -370,7 +370,7 @@ hsBool plDynaWave::Age(double t, float ramp, float decay, float life)
return false;
}
hsBool plDynaRippleVS::Age(double t, float ramp, float decay, float life)
bool plDynaRippleVS::Age(double t, float ramp, float decay, float life)
{
float age = float(t - fBirth);
if( age >= life )