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