mirror of
https://github.com/0TheSpy/Seaside.git
synced 2025-01-11 11:33:01 +08:00
15 lines
170 B
C++
15 lines
170 B
C++
#ifndef KEYCODE_H
|
|
#define KEYCODE_H
|
|
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
#include "ButtonCode.h"
|
|
|
|
namespace vgui
|
|
{
|
|
typedef ButtonCode_t KeyCode;
|
|
}
|
|
|
|
#endif |