Cogs.Core
IInputDevice.h
1#pragma once
2
3#include "InputDeviceState.h"
4
5namespace Cogs
6{
7 namespace Core
8 {
10 {
11 public:
13 virtual bool getState(InputDeviceState &) = 0;
14 };
15 }
16}
virtual bool getState(InputDeviceState &)=0
Attempt to poll the latest input state for this device, returns true if success and false if any erro...
Contains all Cogs related functionality.
Definition: FieldSetter.h:23