#pragma once namespace Gui { struct MouseButtonEvent { Uint8 isdown; Uint8 button; float x, y; /* Widget coords. */ float screenX, screenY; /* Screen coords. */ }; }