Cogs.Core
InputDeviceType.h
1#pragma once
2
3#include "Flags.h"
4
5#include <cstdint>
6
7namespace Cogs::Core {
12 enum class InputDeviceType : uint32_t {
13 None = 0,
14 Keyboard = 1,
15 Mouse = 2
16 };
17
18 ENABLE_ENUM_FLAGS(InputDeviceType)
19}
Contains the Engine, Renderer, resource managers and other systems needed to run Cogs....