GigaPasjans
Loading...
Searching...
No Matches
InputController.h
1// Plik utworzony przez Piotra Chudzińskiego w dniu 16.05.2025
2#pragma once
3
4#include "Surface.h"
5
6namespace Andromenda
7{
12 {
13 public:
17 static void Start(Andromenda::Surface *surface);
18
22 static void Exit();
23 };
24} // namespace Andromenda
Provides static methods to control input system lifecycle.
Definition InputController.h:12
static void Start(Andromenda::Surface *surface)
Initializes input control. Events will be passed to given surface.
Definition InputControllerImpl.cpp:101
static void Exit()
Shuts down the input control system.
Definition InputControllerImpl.cpp:117
The renderer of component registry.
Definition Surface.h:28