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.

30 lines
650 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //=============================================================================//
  7. #ifndef INIT_FACTORY_H
  8. #define INIT_FACTORY_H
  9. #ifdef _WIN32
  10. #pragma once
  11. #endif
  12. #include "interface.h"
  13. struct factorylist_t
  14. {
  15. CreateInterfaceFn engineFactory;
  16. CreateInterfaceFn physicsFactory;
  17. CreateInterfaceFn fileSystemFactory;
  18. };
  19. // Store off the factories
  20. void FactoryList_Store( const factorylist_t &sourceData );
  21. // retrieve the stored factories
  22. void FactoryList_Retrieve( factorylist_t &destData );
  23. #endif // INIT_FACTORY_H