From e3f1000f17d5368e676a02d2670f9b50fe8fcbab Mon Sep 17 00:00:00 2001 From: SirLynix Date: Tue, 14 Mar 2023 18:05:14 +0100 Subject: [PATCH] Platform: Remove unused header --- include/Nazara/Platform.hpp | 1 - include/Nazara/Platform/Joystick.hpp | 27 --------------------------- 2 files changed, 28 deletions(-) delete mode 100644 include/Nazara/Platform/Joystick.hpp diff --git a/include/Nazara/Platform.hpp b/include/Nazara/Platform.hpp index bdb1f9c44..70e5b29db 100644 --- a/include/Nazara/Platform.hpp +++ b/include/Nazara/Platform.hpp @@ -36,7 +36,6 @@ #include #include #include -#include #include #include #include diff --git a/include/Nazara/Platform/Joystick.hpp b/include/Nazara/Platform/Joystick.hpp deleted file mode 100644 index 0fa8a7107..000000000 --- a/include/Nazara/Platform/Joystick.hpp +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright (C) 2023 Jérôme "Lynix" Leclercq (lynix680@gmail.com) -// This file is part of the "Nazara Engine - Platform module" -// For conditions of distribution and use, see copyright notice in Config.hpp - -#pragma once - -#ifndef NAZARA_PLATFORM_JOYSTICK_HPP -#define NAZARA_PLATFORM_JOYSTICK_HPP - -#include -#include - -namespace Nz -{ - class NAZARA_PLATFORM_API Joystick - { - public: - Joystick() = delete; - ~Joystick() = delete; - - static unsigned int GetMaxJoystickCount(); - - static void Update(); - }; -} - -#endif // NAZARA_PLATFORM_JOYSTICK_HPP