Cogs.Core
MacOSGamepad.h
1#pragma once
2
3namespace Cogs {
4 namespace Core {
5 class ViewContext;
6 }
7 namespace Platform {
8 class GamepadHandler
9 {
10 public:
11 void initialize(Core::ViewContext* viewContext);
12 void update();
13 };
14 }
15}
Contains all Cogs related functionality.
Definition: FieldSetter.h:23