16 lines
191 B
C++
16 lines
191 B
C++
#pragma once
|
|
#include <windows.h>
|
|
|
|
namespace TLAC::Input
|
|
{
|
|
struct MouseState
|
|
{
|
|
POINT Position;
|
|
POINT RelativePosition;
|
|
long MouseWheel;
|
|
bool ScrolledUp;
|
|
bool ScrolledDown;
|
|
};
|
|
}
|
|
|