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.

24 lines
562 B

  1. //===== Copyright � 1996-2005, Valve Corporation, All rights reserved. ======//
  2. //
  3. // Purpose: this is a map for virtual key codes
  4. // virtual key codes may exist outside this range for other languages
  5. // NOTE: Button codes also contain mouse codes, but we won't worry about that
  6. //
  7. // $NoKeywords: $
  8. //===========================================================================//
  9. #ifndef KEYCODE_H
  10. #define KEYCODE_H
  11. #ifdef _WIN32
  12. #pragma once
  13. #endif
  14. #include "inputsystem/ButtonCode.h"
  15. namespace vgui
  16. {
  17. typedef ButtonCode_t KeyCode;
  18. }
  19. #endif // KEYCODE_H