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.

21 lines
511 B

  1. //===== Copyright (c) 1996-2005, Valve Corporation, All rights reserved. ======//
  2. #ifndef IIEXTPROPPORTALLOCATORHINC
  3. #define IIEXTPROPPORTALLOCATORHINC
  4. #define IEXTPROPPORTALLOCATOR_INTERFACE_NAME "PORTAL_SERVER_DLL_PROPPORTAL_LOCATOR"
  5. abstract_class IPortalServerDllPropPortalLocator
  6. {
  7. public:
  8. struct PortalInfo_t
  9. {
  10. int iLinkageGroupId;
  11. int nPortal;
  12. Vector vecOrigin;
  13. QAngle vecAngle;
  14. };
  15. virtual void LocateAllPortals( CUtlVector<PortalInfo_t> &arrPortals ) = 0;
  16. };
  17. #endif