Team Fortress 2 Source Code as on 22/4/2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
596 B

  1. //========= Copyright Valve Corporation, All rights reserved. ============//
  2. #ifndef ECON_HOLIDAYS_H
  3. #define ECON_HOLIDAYS_H
  4. #ifdef _WIN32
  5. #pragma once
  6. #endif
  7. bool EconHolidays_IsHolidayActive( int iHolidayIndex, const class CRTime& timeCurrent );
  8. int EconHolidays_GetHolidayForString( const char* pszHolidayName );
  9. const char *EconHolidays_GetActiveHolidayString();
  10. #if defined(TF_CLIENT_DLL) || defined(TF_DLL) || defined(TF_GC_DLL)
  11. RTime32 EconHolidays_TerribleHack_GetHalloweenEndData();
  12. #endif // defined(TF_CLIENT_DLL) || defined(TF_DLL) || defined(TF_GC_DLL)
  13. #endif // ECON_HOLIDAYS_H