11 lines
152 B
C++
11 lines
152 B
C++
#pragma once
|
|
#include "KeyString.h"
|
|
|
|
namespace TLAC::Input::KeyConfig
|
|
{
|
|
struct KeyStringHash
|
|
{
|
|
size_t operator()(const KeyString& key) const;
|
|
};
|
|
}
|