Counter Strike : Global Offensive Source Code
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.

34 lines
765 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //=============================================================================//
  7. #ifndef VRADDLL_H
  8. #define VRADDLL_H
  9. #ifdef _WIN32
  10. #pragma once
  11. #endif
  12. #include "ivraddll.h"
  13. #include "ilaunchabledll.h"
  14. class CVRadDLL : public IVRadDLL, public ILaunchableDLL
  15. {
  16. // IVRadDLL overrides.
  17. public:
  18. virtual int main( int argc, char **argv );
  19. virtual bool Init( char const *pFilename );
  20. virtual void Release();
  21. virtual void GetBSPInfo( CBSPInfo *pInfo );
  22. virtual bool DoIncrementalLight( char const *pVMFFile );
  23. virtual bool Serialize();
  24. virtual float GetPercentComplete();
  25. virtual void Interrupt();
  26. };
  27. #endif // VRADDLL_H