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.

31 lines
504 B

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. #ifndef GAMECONTROLS_MISCUTILS_H
  3. #define GAMECONTROLS_MISCUTILS_H
  4. #ifdef _WIN32
  5. #pragma once
  6. #endif
  7. abstract_class IGameUIMiscUtils
  8. {
  9. public:
  10. virtual bool PointTriangleHitTest( Vector2D tringleVert0, Vector2D tringleVert1, Vector2D tringleVert2, Vector2D point ) = 0;
  11. };
  12. enum SublayerTypes_t
  13. {
  14. SUBLAYER_STATIC,
  15. SUBLAYER_DYNAMIC,
  16. SUBLAYER_FONT,
  17. SUBLAYER_MAX,
  18. };
  19. #endif // GAMECONTROLS_MISCUTILS_H