tec::EventList
#include <game-state.hpp>
Public Functions
| Name | |
|---|---|
| EventList() | |
| EventList(const EventList & ) =delete | |
| EventList(EventList && other) | |
| EventList & | operator=(const EventList & other) =delete |
| EventList & | operator=(EventList && other) |
Public Attributes
| Name | |
|---|---|
| std::list< KeyboardEvent > | keyboard_events |
| std::list< MouseBtnEvent > | mouse_button_events |
| std::list< MouseMoveEvent > | mouse_move_events |
| std::list< MouseClickEvent > | mouse_click_events |
Public Functions Documentation
function EventList
inline EventList()
function EventList
EventList(
const EventList &
) =delete
function EventList
inline EventList(
EventList && other
)
function operator=
EventList & operator=(
const EventList & other
) =delete
function operator=
inline EventList & operator=(
EventList && other
)
Public Attributes Documentation
variable keyboard_events
std::list< KeyboardEvent > keyboard_events;
variable mouse_button_events
std::list< MouseBtnEvent > mouse_button_events;
variable mouse_move_events
std::list< MouseMoveEvent > mouse_move_events;
variable mouse_click_events
std::list< MouseClickEvent > mouse_click_events;
Updated on 2022-07-24 at 19:27:35 +0000