20 lines
305 B
C++
20 lines
305 B
C++
// Copyright (c) 2012-2024 Wojciech Figat. All rights reserved.
|
|
|
|
#pragma once
|
|
|
|
#if PLATFORM_GDK
|
|
|
|
/// <summary>
|
|
/// GDK platform specific implementation of the input system parts.
|
|
/// </summary>
|
|
class GDKInput
|
|
{
|
|
public:
|
|
|
|
static void Init();
|
|
static void Exit();
|
|
static void Update();
|
|
};
|
|
|
|
#endif
|