rasixz / VirtualKeys

This is a list with almost all Virtual Keys for C++

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Logo

This is a simple Project wich contains almost all Default keys in hexadecimal format.

The keys are all copied from the offical virtual key code list from the Microsoft docs.

Usage

To use it you have to add the Keys.hpp to your project.
After adding it to your project, you can use

    Input::K_A //keycode from the key"a"
    Input::Mouse::K_LBUTTON //keycode from the "Left Mousebutton"

Just use the namespace Input for all keyboard keys and Input::Mouse for Mousebuttons. Or you could use using namesapce Input to just use K_A or Mouse::K_LBUTTON.

About

This is a list with almost all Virtual Keys for C++


Languages

Language:C++ 100.0%