Program Listing for File keyboard.h

Return to documentation for file (blam\components\input\keyboard.h)

// Blamite Game Engine - Keyboard Input Handling    //
//   (c) Elaztek Studios 2019                      //

#pragma once

#include <Windows.h>

#ifndef BLAM
#define BLAM
#endif

namespace Blam::Input
{
    BLAM int            HandleCharacterInput(WPARAM wParam);

    BLAM int            HandleKeyPress(WPARAM wParam);
}