cae  0.0.0
Cross-API graphics engine
Loading...
Searching...
No Matches
IGamepad.hpp
Go to the documentation of this file.
1///
2/// @file IGamepad.hpp
3/// @brief This file contains the input gamepad interface
4/// @namespace cae
5///
6
7#pragma once
8
10
11namespace cae
12{
13
14 ///
15 /// @interface IGamepad
16 /// @brief Interface for gamepad
17 /// @namespace cae
18 ///
19 class IGamepad : public utl::IPlugin
20 {
21
22 public:
23 ~IGamepad() override = default;
24
25 }; // interface IGamepad
26
27} // namespace cae
This file contains the plugin interface.
Interface for gamepad.
Definition IGamepad.hpp:20
~IGamepad() override=default
Interface for plugins.
Definition IPlugin.hpp:46