Elaztek Developer Hub
Blamite Game Engine - Strings  00378.04.17.23.1319.blamite
A library containing general purpose utilities and classes for use in multiple projects.
MouseClickEvent.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "../../BlamEvent.h"
4 
5 #include <cstdint>
6 
7 #ifdef STRINGS_EXPORTS
8 #define STRINGS_API __declspec(dllexport)
9 #else
10 #define STRINGS_API __declspec(dllimport)
11 #endif
12 
19 {
20 private:
21  uint8_t button;
22 
23 public:
29  MouseClickEvent(uint8_t _button);
30 
36  uint8_t GetButton();
37 };
BlamEvent
Class representing a generic event.
Definition: BlamEvent.h:33
STRINGS_API
#define STRINGS_API
Definition: MouseClickEvent.h:10
MouseClickEvent
Class representing a mouse button press.
Definition: MouseClickEvent.h:18