17 lines
319 B
C++
17 lines
319 B
C++
#pragma once
|
|||
|
|
#include "Graphics/GraphicsResources.h"
|
||
|
|
|
||
|
|
namespace Seele
|
||
|
|
{
|
||
|
|
namespace Component
|
||
|
|
{
|
||
|
|
struct KeyboardInput
|
||
|
|
{
|
||
|
|
Seele::StaticArray<bool, static_cast<size_t>(Seele::KeyCode::KEY_LAST)> keys;
|
||
|
|
bool mouse1;
|
||
|
|
bool mouse2;
|
||
|
|
float mouseX;
|
||
|
|
float mouseY;
|
||
|
|
};
|
||
|
|
} // namespace Component
|
||
|
|
} // namespace Seele
|