Nebula
Loading...
Searching...
No Matches
glfwinputserver.h
Go to the documentation of this file.
1#pragma once
2//------------------------------------------------------------------------------
11#include "core/singleton.h"
13
14//------------------------------------------------------------------------------
15namespace GLFW
16{
18{
21public:
25 virtual ~GLFWInputServer();
26
28 void Open();
30 void Close();
32 void OnFrame();
33};
34
35
36} // namespace GLFW
37//------------------------------------------------------------------------------
The InputServer is the central object of the Input subsystem.
Definition inputserverbase.h:32
Definition glfwinputserver.h:18
GLFWInputServer()
constructor
Definition glfwinputserver.cc:21
void Open()
open the input server
Definition glfwinputserver.cc:42
void OnFrame()
call after processing window events
Definition glfwinputserver.cc:79
__DeclareSingleton(GLFWInputServer)
__DeclareClass(GLFWInputServer)
void Close()
close the input server
Definition glfwinputserver.cc:67
virtual ~GLFWInputServer()
destructor
Definition glfwinputserver.cc:29
Definition glfwinputserver.cc:12