| 343 | #endif |
| 344 | |
| 345 | float IsWeekend() |
| 346 | { |
| 347 | if( int( GetServerDayOfWeek() ) % 6 == 0 ) |
| 348 | { |
| 349 | return 1.f; |
| 350 | } |
| 351 | else |
| 352 | { |
| 353 | return 0.f; |
| 354 | } |
| 355 | } |
| 356 | |
| 357 | float TimePhase( float period ) |
| 358 | { |
nothing calls this directly
no test coverage detected