11 lines
187 B
C++
11 lines
187 B
C++
#pragma once
|
|
namespace Gui {
|
|
struct MouseButtonEvent {
|
|
Uint8 isdown;
|
|
Uint8 button;
|
|
float x, y; /* Widget coords. */
|
|
float screenX, screenY; /* Screen coords. */
|
|
};
|
|
}
|
|
|